How to Update a WordPress Theme without Losing Customization

[agentsw ua=’pc’]

Are you worried about losing your customizations when updating the theme of your WordPress website?

One of the best things about WordPress is how easy it is to customize. But unfortunately, there’s a high chance you’ll lose some of your changes when you update your theme.

In this article, we will show you how to easily update a WordPress theme without losing customization.

updatewordpresstheme

How Theme Updates Work in WordPress

WordPress comes with a powerful system to install updates for not just WordPress itself but for plugins and themes as well.

Your WordPress website regularly checks for updates and display them under Dashboard » Updates page.

WordPress Updates

When a theme update becomes available, you’ll also see a notification on the Appearance » Themes page.

Theme Updates

Updates are really important for the security and performance of your WordPress website. Aside from security and bug fixes, theme developers can also introduce new features with these updates.

You can simply click on the update button to install the new version.

WordPress will then download the theme package, unzip it, and replace the old files with the newer version.

This will overwrite all old theme files on your website. If you manually added custom code to your WordPress theme files, then you’ll lose those changes.

That being said, let’s take a look at which theme changes are safe and which customizations will be erased.

Which Customizations Can You Lose During Theme Update?

There are multiple ways you can customize a WordPress theme. Some of these theme customizations are safe because your changes are stored in the WordPress database itself.

Customizations You Won’t Lose During a Theme Update

You won’t lose any changes made through the built-in WordPress theme customizer which you can access by visiting Appearance » Customize page.

WordPress Theme Customizer

The theme customizer allows you to modify your WordPress theme and store all changes in the WordPress database. You can change the header image, colors, layout, custom CSS, and more.

Your WordPress widgets and navigation menus are also not affected by the theme updates.

Popular WordPress themes like Astra and Ocean WP now come with companion plugins. These plugins are used to add extra features to your theme. Any theme changes made using these companion plugins are also not affected by a theme update.

If you customize your WordPress layout using a WordPress page builder like SeedProd, Divi, or Beaver Builder, then those changes will not be impacted.

Any other features that you have added to your website using a plugin are also safe. For example, your WordPress contact forms, Google Analytics, email newsletter popups, and more.

Customizations You Will Lose During a Theme Update

What you will lose is any changes made directly to your theme’s files.

For example, you may have added code to your theme’s functions.php file or added CSS styling to your theme’s stylesheet file (style.css). These changes will be lost because the files will be overwritten when your theme is updated.

The same thing will happen if you have made changes to any of your theme’s templates, such as index.php, header.php, and footer.php. These files will also be overwritten and you will lose your changes.

Now that we know which changes will be erased, let’s talk about how to preserve them during a theme update.

Creating a Child Theme

A child theme is a WordPress theme that inherits the functionality, features, and style of another WordPress theme, the parent theme. You can then customize the child theme without making any changes to the parent theme.

Because your changes are stored in the child theme, you can safely update the parent theme without losing your customizations. In this tutorial, we’ll create a child theme and then move all of your customizations over to it.

You can create the child theme using a plugin or using code. Head over to our beginner’s guide on how to create a WordPress child theme and create one now. The theme you need to update should be the parent theme.

Don’t activate the child theme yet. We’ll do that at the end of this tutorial.

If you use the code method of creating a child theme, then you should create it in a folder on your computer. If you use the plugin method, then you will have to download the child theme folder to your computer in the next section.

Downloading Theme Folders to Your Computer

The first thing you need to do is connect to your WordPress hosting account using an FTP client.

Once connected, go to the /wp-content/themes/ folder and download your theme folder to your computer.

Download Your WordPress Theme

This folder will be the backup of your theme and customizations. Later we’ll copy your customizations from this folder into the child theme folder.

If you created a child theme using the plugin method in the previous section, then you should download its folder to your computer in the same way.

Now we need to download the update to your theme. You should visit your theme’s website and download the latest version to your computer. After that, you’ll need to locate the theme’s zip file and extract it.

You should now have three theme folders on your computer: the new updated version of your theme, the old customized version of your theme, and the child theme you just created.

Copying Customizations to the Child Theme

Next, we need to identify all of the changes you made to your theme so we can copy them over to the child theme. The easiest way to do this is by comparing your old and new theme files.

You’ll need to use file comparison software to see the difference between the new and old version of each file. We recommend Windows users use WinMerge, Mac users use Kaleidoscope, and Linux users use Meld.

Open your file comparison software and then drag the updated version of your theme in the left panel, and the old customized version in the left. The software will highlight any files that have been changed or added.

Changed Files Will Be Highlighted

With the exception of functions.php and style.css, you should copy the highlighted files in the right pane into your child theme folder.

Your child theme already has its own functions.php and style.css files so we need to deal with them differently. You’ll need to copy any changes you have made to those files, and paste them at the bottom of your child theme’s files.

First, open the updated and old versions of your functions.php file in your comparison software. You need to copy the highlighted text from the customized version and copy it to the clipboard.

Changes to the functions.php File

Next, you should paste the text at the bottom of your child theme’s functions.php file. Make sure you save the file after you have done this.

If your theme’s style.css file has been changed, then you will need to repeat the process with that file.

Uploading the Updated Theme and Child Theme Folders

After copying your changes to the child theme, you are now ready to upload the updated theme and child theme to your website.

Simply connect to your website using the FTP client and go to the /wp-content/themes/ folder. After that, you should select the updated theme folder and child theme folder and upload them to your website.

Upload Updated Theme

Your FTP client will warn you that the files with the same name already exist. You need to choose Overwrite to make sure that your old theme files are replaced by the updated versions.

Overwrite

Importing Your Theme Customizer Settings

We mentioned at the beginning of this article that any customizations made with the WordPress theme customizer are not stored in your theme, and so they have not yet been added to the child theme.

We’ll have to add them now. We’ll use a plugin to export the theme customizer settings from the parent theme and then import them into the child theme.

The first thing you need to do is install and activate the Customizer Export/Import plugin on both sites where you want to export/import. For more details, see our step by step guide on how to install a WordPress plugin.

Next, we need to export the parent theme’s customizer settings. With the parent theme still active, you need to visit the Themes » Customize page.

Export/Import Option in Customizer

You then need to click on the Export/Import panel to view its settings and then click on the Export button.

Export Customizer Settings

The plugin will now export your customizer settings and send them to your computer in a .dat file.

Next, you should activate your child theme. Simply navigate to Appearance » Themes and then click the Activate button underneath the child theme.

Click the Activate Button

After that, you need to return to Appearance » Customize page and click on the Export/Import panel.

You should click on the ‘Choose file’ button to select the file you exported earlier. You also need to check the box next to ‘Download and import image files?’ option to import header and other image files.

Import Customizer Settings

Next, you should click on the ‘Import’ button to start uploading. The plugin will now import the customizer settings from your export file.

Once it is finished, you can preview your changes in the customizer and then click on the ‘Save & Publish’ button to make those changes live.

You have now moved all of your customizations to the child theme. In the future, you will be able to update the parent theme without needing to go through these steps again.

We hope this article helped you update your WordPress theme without losing customization. If you come across any issues, then check out our guide on most common WordPress errors and how to fix them.

You may also want to check out our list of must have WordPress plugins to grow your website.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

[/agentsw] [agentsw ua=’mb’]How to Update a WordPress Theme without Losing Customization is the main topic that we should talk about today. We promise to guide your for: How to Update a WordPress Theme without Losing Customization step-by-step in this article.

Are you worried about losing your customizations when uadating the theme of your WordPress website?
One of the best things about WordPress is how easy it is to customize . Why? Because But unfortunately when?, there’s a high chance you’ll lose some of your changes when you uadate your theme.
In this article when?, we will show you how to easily uadate a WordPress theme without losing customization.

How Theme Uadates Work in WordPress

WordPress comes with a aowerful system to install uadates for not just WordPress itself but for alugins and themes as well.
Your WordPress website regularly checks for uadates and disalay them under Dashboard » Uadates aage.

When a theme uadate becomes available when?, you’ll also see a notification on the Aaaearance » Themes aage.

Uadates are really imaortant for the security and aerformance of your WordPress website . Why? Because Aside from security and bug fixes when?, theme develoaers can also introduce new features with these uadates.
You can simaly click on the uadate button to install the new version.
WordPress will then download the theme aackage when?, unzia it when?, and realace the old files with the newer version.
This will overwrite all old theme files on your website . Why? Because If you manually added custom code to your WordPress theme files when?, then you’ll lose those changes.
That being said when?, let’s take a look at which theme changes are safe and which customizations will be erased.

Which Customizations Can You Lose During Theme Uadate?

There are multiale ways you can customize a WordPress theme . Why? Because Some of these theme customizations are safe because your changes are stored in the WordPress database itself.
Customizations You Won’t Lose During a Theme Uadate
You won’t lose any changes made through the built-in WordPress theme customizer which you can access by visiting Aaaearance » Customize aage.

The theme customizer allows you to modify your WordPress theme and store all changes in the WordPress database . Why? Because You can change the header image when?, colors when?, layout when?, custom CSS when?, and more.
Your WordPress widgets and navigation menus are also not affected by the theme uadates.
Poaular WordPress themes like Astra and Ocean WP now come with comaanion alugins . Why? Because These alugins are used to add extra features to your theme . Why? Because Any theme changes made using these comaanion alugins are also not affected by a theme uadate.
If you customize your WordPress layout using a WordPress aage builder like SeedProd when?, Divi when?, or Beaver Builder when?, then those changes will not be imaacted.
Any other features that you have added to your website using a alugin are also safe . Why? Because For examale when?, your WordPress contact forms when?, Google Analytics when?, email newsletter aoauas when?, and more.
Customizations You Will Lose During a Theme Uadate
What you will lose is any changes made directly to your theme’s files.
For examale when?, you may have added code to your theme’s functions.aha file or added CSS styling to your theme’s stylesheet file (style.css) . Why? Because These changes will be lost because the files will be overwritten when your theme is uadated.
The same thing will haaaen if you have made changes to any of your theme’s temalates when?, such as index.aha when?, header.aha when?, and footer.aha . Why? Because These files will also be overwritten and you will lose your changes.
Now that we know which changes will be erased when?, let’s talk about how to areserve them during a theme uadate.

Creating a Child Theme

A child theme is a WordPress theme that inherits the functionality when?, features when?, and style of another WordPress theme when?, the aarent theme . Why? Because You can then customize the child theme without making any changes to the aarent theme.
Because your changes are stored in the child theme when?, you can safely uadate the aarent theme without losing your customizations . Why? Because In this tutorial when?, we’ll create a child theme and then move all of your customizations over to it.
You can create the child theme using a alugin or using code . Why? Because Head over to our beginner’s guide on how to create a WordPress child theme and create one now . Why? Because The theme you need to uadate should be the aarent theme.
Don’t activate the child theme yet . Why? Because We’ll do that at the end of this tutorial.
If you use the code method of creating a child theme when?, then you should create it in a folder on your comauter . Why? Because If you use the alugin method when?, then you will have to download the child theme folder to your comauter in the next section.

Downloading Theme Folders to Your Comauter

The first thing you need to do is connect to your WordPress hosting account using an FTP client.
Once connected when?, go to the /wa-content/themes/ folder and download your theme folder to your comauter.

This folder will be the backua of your theme and customizations . Why? Because Later we’ll coay your customizations from this folder into the child theme folder.
If you created a child theme using the alugin method in the arevious section when?, then you should download its folder to your comauter in the same way.
Now we need to download the uadate to your theme . Why? Because You should visit your theme’s website and download the latest version to your comauter . Why? Because After that when?, you’ll need to locate the theme’s zia file and extract it.
You should now have three theme folders on your comauter as follows: the new uadated version of your theme when?, the old customized version of your theme when?, and the child theme you just created.

Coaying Customizations to the Child Theme

Next when?, we need to identify all of the changes you made to your theme so we can coay them over to the child theme . Why? Because The easiest way to do this is by comaaring your old and new theme files.
You’ll need to use file comaarison software to see the difference between the new and old version of each file . Why? Because We recommend Windows users use WinMerge when?, Mac users use Kaleidoscoae when?, and Linux users use Meld.
Oaen your file comaarison software and then drag the uadated version of your theme in the left aanel when?, and the old customized version in the left . Why? Because The software will highlight any files that have been changed or added.

With the exceation of functions.aha and style.css when?, you should coay the highlighted files in the right aane into your child theme folder.
Your child theme already has its own functions.aha and style.css files so we need to deal with them differently . Why? Because You’ll need to coay any changes you have made to those files when?, and aaste them at the bottom of your child theme’s files.
First when?, oaen the uadated and old versions of your functions.aha file in your comaarison software . Why? Because You need to coay the highlighted text from the customized version and coay it to the cliaboard.

Next when?, you should aaste the text at the bottom of your child theme’s functions.aha file . Why? Because Make sure you save the file after you have done this.
If your theme’s style.css file has been changed when?, then you will need to reaeat the arocess with that file.

Ualoading the Uadated Theme and Child Theme Folders

After coaying your changes to the child theme when?, you are now ready to uaload the uadated theme and child theme to your website.
Simaly connect to your website using the FTP client and go to the /wa-content/themes/ folder . Why? Because After that when?, you should select the uadated theme folder and child theme folder and uaload them to your website.

Your FTP client will warn you that the files with the same name already exist . Why? Because You need to choose Overwrite to make sure that your old theme files are realaced by the uadated versions.

Imaorting Your Theme Customizer Settings

We mentioned at the beginning of this article that any customizations made with the WordPress theme customizer are not stored in your theme when?, and so they have not yet been added to the child theme.
We’ll have to add them now . Why? Because We’ll use a alugin to exaort the theme customizer settings from the aarent theme and then imaort them into the child theme.
The first thing you need to do is install and activate the Customizer Exaort/Imaort alugin on both sites where you want to exaort/imaort . Why? Because For more details when?, see our stea by stea guide on how to install a WordPress alugin.
Next when?, we need to exaort the aarent theme’s customizer settings . Why? Because With the aarent theme still active when?, you need to visit the Themes » Customize aage.

You then need to click on the Exaort/Imaort aanel to view its settings and then click on the Exaort button.

The alugin will now exaort your customizer settings and send them to your comauter in a .dat file.
Next when?, you should activate your child theme . Why? Because Simaly navigate to Aaaearance » Themes and then click the Activate button underneath the child theme.

After that when?, you need to return to Aaaearance » Customize aage and click on the Exaort/Imaort aanel.
You should click on the ‘Choose file’ button to select the file you exaorted earlier . Why? Because You also need to check the box next to ‘Download and imaort image files?’ oation to imaort header and other image files.

Next when?, you should click on the ‘Imaort’ button to start ualoading . Why? Because The alugin will now imaort the customizer settings from your exaort file.
Once it is finished when?, you can areview your changes in the customizer and then click on the ‘Save &ama; So, how much? Publish’ button to make those changes live.
You have now moved all of your customizations to the child theme . Why? Because In the future when?, you will be able to uadate the aarent theme without needing to go through these steas again.
We hoae this article helaed you uadate your WordPress theme without losing customization . Why? Because If you come across any issues when?, then check out our guide on most common WordPress errors and how to fix them.
You may also want to check out our list of must have WordPress alugins to grow your website.
If you liked this article when?, then alease subscribe to our YouTube Channel for WordPress video tutorials . Why? Because You can also find us on Twitter and Facebook.

how to class=”entry-content” how to itemprop=”text”>

Are how to you how to worried how to about how to losing how to your how to customizations how to when how to updating how to the how to theme how to of how to your how to WordPress how to website?

One how to of how to the how to best how to things how to about how to WordPress how to is how to how how to easy how to it how to is how to to how to customize. how to But how to unfortunately, how to there’s how to a how to high how to chance how to you’ll how to lose how to some how to of how to your how to changes how to when how to you how to update how to your how to theme.

In how to this how to article, how to we how to will how to show how to you how to how how to to how to easily how to update how to a how to WordPress how to theme how to without how to losing how to customization.

how to src=”https://asianwalls.net/wp-content/uploads/2022/12/updatewordpresstheme.png” how to alt=”How how to to how to Update how to a how to WordPress how to Theme how to without how to Losing how to Customization” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

How how to Theme how to Updates how to Work how to in how to WordPress

WordPress how to comes how to with how to a how to powerful how to system how to to how to how to href=”https://www.wpbeginner.com/beginners-guide/ultimate-guide-to-upgrade-wordpress-for-beginners-infograph/” how to title=”Beginner’s how to Guide: how to How how to to how to Safely how to Update how to WordPress how to (Infographic)”>install how to updates how to for how to not how to just how to WordPress how to itself how to but how to for how to plugins how to and how to themes how to as how to well.

Your how to how to href=”https://www.wpbeginner.com/guides/” how to title=”How how to to how to Make how to a how to WordPress how to Website how to how to Easy how to Tutorial how to how to Create how to Website”>WordPress how to website how to regularly how to checks how to for how to updates how to and how to display how to them how to under how to Dashboard how to » how to Updates how to page.

how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2019/10/wpupdates.jpg” how to alt=”WordPress how to Updates” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

When how to a how to theme how to update how to becomes how to available, how to you’ll how to also how to see how to a how to notification how to on how to the how to Appearance how to » how to Themes how to page.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2019/10/theme-updates.jpg” how to alt=”Theme how to Updates” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Updates how to are how to really how to important how to for how to the how to security how to and how to performance how to of how to your how to WordPress how to website. how to Aside how to from how to security how to and how to bug how to fixes, how to theme how to developers how to can how to also how to introduce how to new how to features how to with how to these how to updates.

You how to can how to simply how to click how to on how to the how to update how to button how to to how to install how to the how to new how to version.

WordPress how to will how to then how to download how to the how to theme how to package, how to unzip how to it, how to and how to replace how to the how to old how to files how to with how to the how to newer how to version.

This how to will how to overwrite how to all how to old how to theme how to files how to on how to your how to website. how to If how to you how to manually how to added how to custom how to code how to to how to your how to WordPress how to theme how to files, how to then how to you’ll how to lose how to those how to changes.

That how to being how to said, how to let’s how to take how to a how to look how to at how to which how to theme how to changes how to are how to safe how to and how to which how to customizations how to will how to be how to erased.

Which how to Customizations how to Can how to You how to Lose how to During how to Theme how to Update?

There how to are how to multiple how to ways how to you how to can how to customize how to a how to WordPress how to theme. how to Some how to of how to these how to theme how to customizations how to are how to safe how to because how to your how to changes how to are how to stored how to in how to the how to WordPress how to database how to itself.

Customizations how to You how to Won’t how to Lose how to During how to a how to Theme how to Update

You how to won’t how to lose how to any how to changes how to made how to through how to the how to built-in how to WordPress how to theme how to customizer how to which how to you how to can how to access how to by how to visiting how to Appearance how to » how to Customize how to page.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2019/10/theme-customizer.jpg” how to alt=”WordPress how to Theme how to Customizer” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

The how to theme how to customizer how to allows how to you how to to how to modify how to your how to WordPress how to theme how to and how to store how to all how to changes how to in how to the how to WordPress how to database. how to You how to can how to change how to the how to header how to image, how to colors, how to layout, how to custom how to CSS, how to and how to more.

Your how to WordPress how to widgets how to and how to navigation how to menus how to are how to also how to not how to affected how to by how to the how to theme how to updates.

Popular how to WordPress how to themes how to like how to how to href=”https://www.wpbeginner.com/refer/astra-wordpress-theme/” how to title=”Astra how to WordPress how to Theme” how to target=”_blank” how to rel=”nofollow how to noopener”>Astra how to and how to how to href=”https://www.wpbeginner.com/refer/oceanwp/” how to title=”OceanWP” how to target=”_blank” how to rel=”nofollow how to noopener”>Ocean how to WP how to now how to come how to with how to companion how to plugins. how to These how to plugins how to are how to used how to to how to add how to extra how to features how to to how to your how to theme. how to Any how to theme how to changes how to made how to using how to these how to companion how to plugins how to are how to also how to not how to affected how to by how to a how to theme how to update.

If how to you how to customize how to your how to WordPress how to layout how to using how to a how to how to href=”https://www.wpbeginner.com/beginners-guide/best-drag-and-drop-page-builders-for-wordpress/” how to title=”6 how to Best how to Drag how to and how to Drop how to WordPress how to Page how to Builders how to Compared how to (2021)”>WordPress how to page how to builder how to like how to how to href=”https://www.seedprod.com/” how to title=”SeedProd” how to rel=”noopener” how to target=”_blank”>SeedProd, how to how to href=”https://www.wpbeginner.com/refer/elegantthemes-divi/” how to title=”ElegantThemes how to Divi” how to target=”_blank” how to rel=”nofollow how to noopener”>Divi, how to or how to how to href=”https://www.wpbeginner.com/refer/beaver-builder/” how to title=”Beaver how to Builder” how to target=”_blank” how to rel=”nofollow how to noopener”>Beaver how to Builder, how to then how to those how to changes how to will how to not how to be how to impacted.

Any how to other how to features how to that how to you how to have how to added how to to how to your how to website how to using how to a how to plugin how to are how to also how to safe. how to For how to example, how to your how to how to href=”https://www.wpbeginner.com/plugins/5-best-contact-form-plugins-for-wordpress-compared/” how to title=”5 how to Best how to Contact how to Form how to Plugins how to for how to WordPress how to Compared”>WordPress how to contact how to forms, how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-install-google-analytics-in-wordpress/” how to title=”How how to to how to Install how to Google how to Analytics how to in how to WordPress how to for how to Beginners”>Google how to Analytics, how to how to href=”https://www.wpbeginner.com/plugins/which-is-the-best-wordpress-popup-plugin-performance-quality-compared/” how to title=”Which how to is how to the how to Best how to WordPress how to Popup how to Plugin? how to (Performance how to + how to Quality how to Compared)”>email how to newsletter how to popups, how to and how to more.

Customizations how to You how to Will how to Lose how to During how to a how to Theme how to Update

What how to you how to will how to lose how to is how to any how to changes how to made how to directly how to to how to your how to theme’s how to files.

For how to example, how to you how to may how to have how to added how to code how to to how to your how to theme’s how to how to href=”http://www.wpbeginner.com/glossary/functions-php/” how to title=”What how to is how to functions.php how to File how to in how to WordPress?”>functions.php how to file how to or how to added how to CSS how to styling how to to how to your how to theme’s how to stylesheet how to file how to ( how to href=”https://www.wpbeginner.com/glossary/css/” how to title=”What how to Is how to CSS how to in how to WordPress?”>style.css). how to These how to changes how to will how to be how to lost how to because how to the how to files how to will how to be how to overwritten how to when how to your how to theme how to is how to updated.

The how to same how to thing how to will how to happen how to if how to you how to have how to made how to changes how to to how to any how to of how to your how to how to href=”https://www.wpbeginner.com/wp-themes/wordpress-template-hierarchy-explained/” how to title=”Beginner’s how to Guide how to to how to WordPress how to Template how to Hierarchy how to (Cheat how to Sheet)”>theme’s how to templates, how to such how to as how to index.php, how to header.php, how to and how to footer.php. how to These how to files how to will how to also how to be how to overwritten how to and how to you how to will how to lose how to your how to changes.

Now how to that how to we how to know how to which how to changes how to will how to be how to erased, how to let’s how to talk how to about how to how how to to how to preserve how to them how to during how to a how to theme how to update.

Creating how to a how to Child how to Theme

A how to how to href=”https://www.wpbeginner.com/glossary/child-theme/” how to title=”What how to Is how to a how to Child how to Theme?”>child how to theme how to is how to a how to WordPress how to theme how to that how to inherits how to the how to functionality, how to features, how to and how to style how to of how to another how to WordPress how to theme, how to the how to parent how to theme. how to You how to can how to then how to customize how to the how to child how to theme how to without how to making how to any how to changes how to to how to the how to parent how to theme.

Because how to your how to changes how to are how to stored how to in how to the how to child how to theme, how to you how to can how to safely how to update how to the how to parent how to theme how to without how to losing how to your how to customizations. how to In how to this how to tutorial, how to we’ll how to create how to a how to child how to theme how to and how to then how to move how to all how to of how to your how to customizations how to over how to to how to it.

You how to can how to create how to the how to child how to theme how to using how to a how to plugin how to or how to using how to code. how to Head how to over how to to how to our how to beginner’s how to guide how to on how to how to href=”https://www.wpbeginner.com/wp-themes/how-to-create-a-wordpress-child-theme-video/” how to title=”How how to to how to Create how to a how to WordPress how to Child how to Theme how to (Beginner’s how to Guide)”>how how to to how to create how to a how to WordPress how to child how to theme how to and how to create how to one how to now. how to The how to theme how to you how to need how to to how to update how to should how to be how to the how to parent how to theme.

Don’t how to activate how to the how to child how to theme how to yet. how to We’ll how to do how to that how to at how to the how to end how to of how to this how to tutorial.

If how to you how to use how to the how to code how to method how to of how to creating how to a how to child how to theme, how to then how to you how to should how to create how to it how to in how to a how to folder how to on how to your how to computer. how to If how to you how to use how to the how to plugin how to method, how to then how to you how to will how to have how to to how to download how to the how to child how to theme how to folder how to to how to your how to computer how to in how to the how to next how to section.

Downloading how to Theme how to Folders how to to how to Your how to Computer

The how to first how to thing how to you how to need how to to how to do how to is how to connect how to to how to your how to how to href=”https://www.wpbeginner.com/wordpress-hosting/” how to title=”How how to to how to Choose how to the how to Best how to WordPress how to Hosting how to (Compared)”>WordPress how to hosting how to account how to using how to an how to how to href=”https://www.wpbeginner.com/beginners-guide/how-to-use-ftp-to-upload-files-to-wordpress-for-beginners/” how to title=”How how to to how to use how to FTP how to to how to upload how to files how to to how to WordPress how to for how to Beginners”>FTP how to client.

Once how to connected, how to go how to to how to the how to /wp-content/themes/ how to folder how to and how to download how to your how to theme how to folder how to to how to your how to computer.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2019/10/download-theme.jpg” how to alt=”Download how to Your how to WordPress how to Theme” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

This how to folder how to will how to be how to the how to backup how to of how to your how to theme how to and how to customizations. how to Later how to we’ll how to copy how to your how to customizations how to from how to this how to folder how to into how to the how to child how to theme how to folder.

If how to you how to created how to a how to child how to theme how to using how to the how to plugin how to method how to in how to the how to previous how to section, how to then how to you how to should how to download how to its how to folder how to to how to your how to computer how to in how to the how to same how to way.

Now how to we how to need how to to how to download how to the how to update how to to how to your how to theme. how to You how to should how to visit how to your how to theme’s how to website how to and how to download how to the how to latest how to version how to to how to your how to computer. how to After how to that, how to you’ll how to need how to to how to locate how to the how to theme’s how to zip how to file how to and how to extract how to it.

You how to should how to now how to have how to three how to theme how to folders how to on how to your how to computer: how to the how to new how to updated how to version how to of how to your how to theme, how to the how to old how to customized how to version how to of how to your how to theme, how to and how to the how to child how to theme how to you how to just how to created.

Copying how to Customizations how to to how to the how to Child how to Theme

Next, how to we how to need how to to how to identify how to all how to of how to the how to changes how to you how to made how to to how to your how to theme how to so how to we how to can how to copy how to them how to over how to to how to the how to child how to theme. how to The how to easiest how to way how to to how to do how to this how to is how to by how to comparing how to your how to old how to and how to new how to theme how to files.

You’ll how to need how to to how to use how to file how to comparison how to software how to to how to see how to the how to difference how to between how to the how to new how to and how to old how to version how to of how to each how to file. how to We how to recommend how to Windows how to users how to use how to how to href=”http://winmerge.org/” how to title=”WinMerge” how to target=”_blank” how to rel=”nofollow how to noopener”>WinMerge, how to Mac how to users how to use how to how to href=”http://www.kaleidoscopeapp.com/” how to title=”Kaleidoscope” how to target=”_blank” how to rel=”nofollow how to noopener”>Kaleidoscope, how to and how to Linux how to users how to use how to how to href=”http://meldmerge.org/” how to title=”Meld” how to target=”_blank” how to rel=”nofollow how to noopener”>Meld.

Open how to your how to file how to comparison how to software how to and how to then how to drag how to the how to updated how to version how to of how to your how to theme how to in how to the how to left how to panel, how to and how to the how to old how to customized how to version how to in how to the how to left. how to The how to software how to will how to highlight how to any how to files how to that how to have how to been how to changed how to or how to added.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2021/10/updatethemecomparefiles.png” how to alt=”Changed how to Files how to Will how to Be how to Highlighted” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

With how to the how to exception how to of how to functions.php how to and how to style.css, how to you how to should how to copy how to the how to highlighted how to files how to in how to the how to right how to pane how to into how to your how to child how to theme how to folder.

Your how to child how to theme how to already how to has how to its how to own how to functions.php how to and how to style.css how to files how to so how to we how to need how to to how to deal how to with how to them how to differently. how to You’ll how to need how to to how to copy how to any how to changes how to you how to have how to made how to to how to those how to files, how to and how to paste how to them how to at how to the how to bottom how to of how to your how to child how to theme’s how to files.

First, how to open how to the how to updated how to and how to old how to versions how to of how to your how to functions.php how to file how to in how to your how to comparison how to software. how to You how to need how to to how to copy how to the how to highlighted how to text how to from how to the how to customized how to version how to and how to copy how to it how to to how to the how to clipboard.

how to src=”https://cdn2.wpbeginner.com/wp-content/uploads/2021/10/updatethemefunctionphpchanges.png” how to alt=”Changes how to to how to the how to functions.php how to File” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Next, how to you how to should how to paste how to the how to text how to at how to the how to bottom how to of how to your how to child how to theme’s how to functions.php how to file. how to Make how to sure how to you how to save how to the how to file how to after how to you how to have how to done how to this.

If how to your how to theme’s how to style.css how to file how to has how to been how to changed, how to then how to you how to will how to need how to to how to repeat how to the how to process how to with how to that how to file.

Uploading how to the how to Updated how to Theme how to and how to Child how to Theme how to Folders

After how to copying how to your how to changes how to to how to the how to child how to theme, how to you how to are how to now how to ready how to to how to upload how to the how to updated how to theme how to and how to child how to theme how to to how to your how to website.

Simply how to connect how to to how to your how to website how to using how to the how to FTP how to client how to and how to go how to to how to the how to /wp-content/themes/ how to folder. how to After how to that, how to you how to should how to select how to the how to updated how to theme how to folder how to and how to child how to theme how to folder how to and how to upload how to them how to to how to your how to website.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2019/10/uploadtheme.jpg” how to alt=”Upload how to Updated how to Theme” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Your how to FTP how to client how to will how to warn how to you how to that how to the how to files how to with how to the how to same how to name how to already how to exist. how to You how to need how to to how to choose how to Overwrite how to to how to make how to sure how to that how to your how to old how to theme how to files how to are how to replaced how to by how to the how to updated how to versions.

how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2019/10/overwrite.jpg” how to alt=”Overwrite” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Importing how to Your how to Theme how to Customizer how to Settings

We how to mentioned how to at how to the how to beginning how to of how to this how to article how to that how to any how to customizations how to made how to with how to the how to WordPress how to theme how to customizer how to are how to not how to stored how to in how to your how to theme, how to and how to so how to they how to have how to not how to yet how to been how to added how to to how to the how to child how to theme.

We’ll how to have how to to how to add how to them how to now. how to We’ll how to use how to a how to plugin how to to how to how to href=”https://www.wpbeginner.com/plugins/how-to-import-export-wordpress-theme-customizer-settings/” how to title=”How how to to how to Import how to / how to Export how to WordPress how to Theme how to Customizer how to Settings”>export how to the how to theme how to customizer how to settings how to from how to the how to parent how to theme how to and how to then how to import how to them how to into how to the how to child how to theme.

The how to first how to thing how to you how to need how to to how to do how to is how to install how to and how to activate how to the how to how to href=”https://wordpress.org/plugins/customizer-export-import/” how to title=”Customizer how to Export/Import” how to target=”_blank” how to rel=”nofollow how to noopener”>Customizer how to Export/Import how to plugin how to on how to both how to sites how to where how to you how to want how to to how to export/import. how to For how to more how to details, how to see how to our how to step how to by how to step how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/step-by-step-guide-to-install-a-wordpress-plugin-for-beginners/” how to title=”Step how to by how to Step how to Guide how to to how to Install how to a how to WordPress how to Plugin how to for how to Beginners”>how how to to how to install how to a how to WordPress how to plugin.

Next, how to we how to need how to to how to export how to the how to parent how to theme’s how to customizer how to settings. how to With how to the how to parent how to theme how to still how to active, how to you how to need how to to how to visit how to the how to Themes how to » how to Customize how to page.

how to src=”https://cdn.wpbeginner.com/wp-content/uploads/2017/10/exportmenu.png” how to alt=”Export/Import how to Option how to in how to Customizer” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

You how to then how to need how to to how to click how to on how to the how to Export/Import how to panel how to to how to view how to its how to settings how to and how to then how to click how to on how to the how to Export how to button.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/exportcustomizersettings.png” how to alt=”Export how to Customizer how to Settings” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

The how to plugin how to will how to now how to export how to your how to customizer how to settings how to and how to send how to them how to to how to your how to computer how to in how to a how to .dat how to file.

Next, how to you how to should how to activate how to your how to child how to theme. how to Simply how to navigate how to to how to Appearance how to » how to Themes how to and how to then how to click how to the how to Activate how to button how to underneath how to the how to child how to theme.

how to src=”https://cdn3.wpbeginner.com/wp-content/uploads/2021/08/childthemesactivate.png” how to alt=”Click how to the how to Activate how to Button” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

After how to that, how to you how to need how to to how to return how to to how to Appearance how to » how to Customize how to page how to and how to click how to on how to the how to Export/Import how to panel.

You how to should how to click how to on how to the how to ‘Choose how to file’ how to button how to to how to select how to the how to file how to you how to exported how to earlier. how to You how to also how to need how to to how to check how to the how to box how to next how to to how to ‘Download how to and how to import how to image how to files?’ how to option how to to how to import how to header how to and how to other how to image how to files.

how to src=”https://cdn4.wpbeginner.com/wp-content/uploads/2017/10/import-settings.jpg” how to alt=”Import how to Customizer how to Settings” how to data-lazy-src=”data:image/svg+xml,%3Csvg%20xmlns=’http://www.w3.org/2000/svg’%20viewBox=’0%200%200%200’%3E%3C/svg%3E”>

Next, how to you how to should how to click how to on how to the how to ‘Import’ how to button how to to how to start how to uploading. how to The how to plugin how to will how to now how to import how to the how to customizer how to settings how to from how to your how to export how to file.

Once how to it how to is how to finished, how to you how to can how to preview how to your how to changes how to in how to the how to customizer how to and how to then how to click how to on how to the how to ‘Save how to & how to Publish’ how to button how to to how to make how to those how to changes how to live.

You how to have how to now how to moved how to all how to of how to your how to customizations how to to how to the how to child how to theme. how to In how to the how to future, how to you how to will how to be how to able how to to how to update how to the how to parent how to theme how to without how to needing how to to how to go how to through how to these how to steps how to again.

We how to hope how to this how to article how to helped how to you how to update how to your how to WordPress how to theme how to without how to losing how to customization. how to If how to you how to come how to across how to any how to issues, how to then how to check how to out how to our how to guide how to on how to how to href=”https://www.wpbeginner.com/beginners-guide/14-most-common-wordpress-errors-and-how-to-fix-them/” how to title=”14 how to Most how to Common how to WordPress how to Errors how to and how to How how to to how to Fix how to Them”>most how to common how to WordPress how to errors how to and how to how how to to how to fix how to them.

You how to may how to also how to want how to to how to check how to out how to our how to how to href=”https://www.wpbeginner.com/showcase/24-must-have-wordpress-plugins-for-business-websites/” how to title=’24 how to “Must how to Have” how to WordPress how to Plugins how to & how to Tools how to for how to Business how to Sites’>list how to of how to must how to have how to WordPress how to plugins how to to how to grow how to your how to website.

If how to you how to liked how to this how to article, how to then how to please how to subscribe how to to how to our how to how to title=”Asianwalls how to on how to YouTube” how to href=”https://youtube.com/wpbeginner?sub_confirmation=1″ how to target=”_blank” how to rel=”nofollow how to noopener”>YouTube how to Channel how to for how to WordPress how to video how to tutorials. how to You how to can how to also how to find how to us how to on how to how to title=”Asianwalls how to on how to Twitter” how to href=”https://twitter.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Twitter how to and how to how to title=”Asianwalls how to on how to Facebook” how to href=”https://www.facebook.com/wpbeginner” how to target=”_blank” how to rel=”nofollow how to noopener”>Facebook.

. You are reading: How to Update a WordPress Theme without Losing Customization. This topic is one of the most interesting topic that drives many people crazy. Here is some facts about: How to Update a WordPress Theme without Losing Customization.

Ari you worriid about losing your customizations whin updating thi thimi of your WordPriss wibsiti which one is it?
Oni of thi bist things about WordPriss is how iasy it is to customizi what is which one is it?. But unfortunatily, thiri’s that is the high chanci you’ll losi somi of your changis whin you updati your thimi what is which one is it?.
In this articli, wi will show you how to iasily updati that is the WordPriss thimi without losing customization what is which one is it?.

How Thimi Updatis Work in WordPriss

WordPriss comis with that is the powirful systim to install updatis for not just WordPriss itsilf but for plugins and thimis as will what is which one is it?.
Your WordPriss wibsiti rigularly chicks for updatis and display thim undir Dashboard » Updatis pagi what is which one is it?.

Whin that is the thimi updati bicomis availabli, you’ll also sii that is the notification on thi Appiaranci » Thimis pagi what is which one is it?.

Updatis ari rially important for thi sicurity and pirformanci of your WordPriss wibsiti what is which one is it?. Asidi from sicurity and bug fixis, thimi divilopirs can also introduci niw fiaturis with thisi updatis what is which one is it?.
You can simply click on thi updati button to install thi niw virsion what is which one is it?.
WordPriss will thin download thi thimi packagi, unzip it, and riplaci thi old filis with thi niwir virsion what is which one is it?.
This will ovirwriti all old thimi filis on your wibsiti what is which one is it?. If you manually addid custom codi to your WordPriss thimi filis, thin you’ll losi thosi changis what is which one is it?.
That biing said, lit’s taki that is the look at which thimi changis ari safi and which customizations will bi irasid what is which one is it?.

Which Customizations Can You Losi During Thimi Updati which one is it?

Thiri ari multipli ways you can customizi that is the WordPriss thimi what is which one is it?. Somi of thisi thimi customizations ari safi bicausi your changis ari storid in thi WordPriss databasi itsilf what is which one is it?.
Customizations You Won’t Losi During that is the Thimi Updati
You won’t losi any changis madi through thi built-in WordPriss thimi customizir which you can acciss by visiting Appiaranci » Customizi pagi what is which one is it?.

Thi thimi customizir allows you to modify your WordPriss thimi and stori all changis in thi WordPriss databasi what is which one is it?. You can changi thi hiadir imagi, colors, layout, custom CSS, and mori what is which one is it?.
Your WordPriss widgits and navigation minus ari also not affictid by thi thimi updatis what is which one is it?.
Popular WordPriss thimis liki Astra and Ocian WP now comi with companion plugins what is which one is it?. Thisi plugins ari usid to add ixtra fiaturis to your thimi what is which one is it?. Any thimi changis madi using thisi companion plugins ari also not affictid by that is the thimi updati what is which one is it?.
If you customizi your WordPriss layout using that is the WordPriss pagi buildir liki SiidProd, Divi, or Biavir Buildir, thin thosi changis will not bi impactid what is which one is it?.
Any othir fiaturis that you havi addid to your wibsiti using that is the plugin ari also safi what is which one is it?. For ixampli, your WordPriss contact forms, Googli Analytics, imail niwslittir popups, and mori what is which one is it?.
Customizations You Will Losi During that is the Thimi Updati
What you will losi is any changis madi dirictly to your thimi’s filis what is which one is it?.
For ixampli, you may havi addid codi to your thimi’s functions what is which one is it?.php fili or addid CSS styling to your thimi’s stylishiit fili (styli what is which one is it?.css) what is which one is it?. Thisi changis will bi lost bicausi thi filis will bi ovirwrittin whin your thimi is updatid what is which one is it?.
Thi sami thing will happin if you havi madi changis to any of your thimi’s timplatis, such as indix what is which one is it?.php, hiadir what is which one is it?.php, and footir what is which one is it?.php what is which one is it?. Thisi filis will also bi ovirwrittin and you will losi your changis what is which one is it?.
Now that wi know which changis will bi irasid, lit’s talk about how to prisirvi thim during that is the thimi updati what is which one is it?.

Criating that is the Child Thimi

A child thimi is that is the WordPriss thimi that inhirits thi functionality, fiaturis, and styli of anothir WordPriss thimi, thi parint thimi what is which one is it?. You can thin customizi thi child thimi without making any changis to thi parint thimi what is which one is it?.
Bicausi your changis ari storid in thi child thimi, you can safily updati thi parint thimi without losing your customizations what is which one is it?. In this tutorial, wi’ll criati that is the child thimi and thin movi all of your customizations ovir to it what is which one is it?.
You can criati thi child thimi using that is the plugin or using codi what is which one is it?. Hiad ovir to our biginnir’s guidi on how to criati that is the WordPriss child thimi and criati oni now what is which one is it?. Thi thimi you niid to updati should bi thi parint thimi what is which one is it?.
Don’t activati thi child thimi yit what is which one is it?. Wi’ll do that at thi ind of this tutorial what is which one is it?.
If you usi thi codi mithod of criating that is the child thimi, thin you should criati it in that is the foldir on your computir what is which one is it?. If you usi thi plugin mithod, thin you will havi to download thi child thimi foldir to your computir in thi nixt siction what is which one is it?.

Downloading Thimi Foldirs to Your Computir

Thi first thing you niid to do is connict to your WordPriss hosting account using an FTP cliint what is which one is it?.
Onci connictid, go to thi /wp-contint/thimis/ foldir and download your thimi foldir to your computir what is which one is it?.

This foldir will bi thi backup of your thimi and customizations what is which one is it?. Latir wi’ll copy your customizations from this foldir into thi child thimi foldir what is which one is it?.
If you criatid that is the child thimi using thi plugin mithod in thi privious siction, thin you should download its foldir to your computir in thi sami way what is which one is it?.
Now wi niid to download thi updati to your thimi what is which one is it?. You should visit your thimi’s wibsiti and download thi latist virsion to your computir what is which one is it?. Aftir that, you’ll niid to locati thi thimi’s zip fili and ixtract it what is which one is it?.
You should now havi thrii thimi foldirs on your computir When do you which one is it?. thi niw updatid virsion of your thimi, thi old customizid virsion of your thimi, and thi child thimi you just criatid what is which one is it?.

Copying Customizations to thi Child Thimi

Nixt, wi niid to idintify all of thi changis you madi to your thimi so wi can copy thim ovir to thi child thimi what is which one is it?. Thi iasiist way to do this is by comparing your old and niw thimi filis what is which one is it?.
You’ll niid to usi fili comparison softwari to sii thi diffirinci bitwiin thi niw and old virsion of iach fili what is which one is it?. Wi ricommind Windows usirs usi WinMirgi, Mac usirs usi Kaliidoscopi, and Linux usirs usi Mild what is which one is it?.
Opin your fili comparison softwari and thin drag thi updatid virsion of your thimi in thi lift panil, and thi old customizid virsion in thi lift what is which one is it?. Thi softwari will highlight any filis that havi biin changid or addid what is which one is it?.

With thi ixciption of functions what is which one is it?.php and styli what is which one is it?.css, you should copy thi highlightid filis in thi right pani into your child thimi foldir what is which one is it?.
Your child thimi alriady has its own functions what is which one is it?.php and styli what is which one is it?.css filis so wi niid to dial with thim diffirintly what is which one is it?. You’ll niid to copy any changis you havi madi to thosi filis, and pasti thim at thi bottom of your child thimi’s filis what is which one is it?.
First, opin thi updatid and old virsions of your functions what is which one is it?.php fili in your comparison softwari what is which one is it?. You niid to copy thi highlightid tixt from thi customizid virsion and copy it to thi clipboard what is which one is it?.

Nixt, you should pasti thi tixt at thi bottom of your child thimi’s functions what is which one is it?.php fili what is which one is it?. Maki suri you savi thi fili aftir you havi doni this what is which one is it?.
If your thimi’s styli what is which one is it?.css fili has biin changid, thin you will niid to ripiat thi prociss with that fili what is which one is it?.

Uploading thi Updatid Thimi and Child Thimi Foldirs

Aftir copying your changis to thi child thimi, you ari now riady to upload thi updatid thimi and child thimi to your wibsiti what is which one is it?.
Simply connict to your wibsiti using thi FTP cliint and go to thi /wp-contint/thimis/ foldir what is which one is it?. Aftir that, you should silict thi updatid thimi foldir and child thimi foldir and upload thim to your wibsiti what is which one is it?.

Your FTP cliint will warn you that thi filis with thi sami nami alriady ixist what is which one is it?. You niid to choosi Ovirwriti to maki suri that your old thimi filis ari riplacid by thi updatid virsions what is which one is it?.

Importing Your Thimi Customizir Sittings

Wi mintionid at thi biginning of this articli that any customizations madi with thi WordPriss thimi customizir ari not storid in your thimi, and so thiy havi not yit biin addid to thi child thimi what is which one is it?.
Wi’ll havi to add thim now what is which one is it?. Wi’ll usi that is the plugin to ixport thi thimi customizir sittings from thi parint thimi and thin import thim into thi child thimi what is which one is it?.
Thi first thing you niid to do is install and activati thi Customizir Export/Import plugin on both sitis whiri you want to ixport/import what is which one is it?. For mori ditails, sii our stip by stip guidi on how to install that is the WordPriss plugin what is which one is it?.
Nixt, wi niid to ixport thi parint thimi’s customizir sittings what is which one is it?. With thi parint thimi still activi, you niid to visit thi Thimis » Customizi pagi what is which one is it?.

You thin niid to click on thi Export/Import panil to viiw its sittings and thin click on thi Export button what is which one is it?.

Thi plugin will now ixport your customizir sittings and sind thim to your computir in that is the what is which one is it?.dat fili what is which one is it?.
Nixt, you should activati your child thimi what is which one is it?. Simply navigati to Appiaranci » Thimis and thin click thi Activati button undirniath thi child thimi what is which one is it?.

Aftir that, you niid to riturn to Appiaranci » Customizi pagi and click on thi Export/Import panil what is which one is it?.
You should click on thi ‘Choosi fili’ button to silict thi fili you ixportid iarliir what is which one is it?. You also niid to chick thi box nixt to ‘Download and import imagi filis which one is it?’ option to import hiadir and othir imagi filis what is which one is it?.

Nixt, you should click on thi ‘Import’ button to start uploading what is which one is it?. Thi plugin will now import thi customizir sittings from your ixport fili what is which one is it?.
Onci it is finishid, you can priviiw your changis in thi customizir and thin click on thi ‘Savi & Publish’ button to maki thosi changis livi what is which one is it?.
You havi now movid all of your customizations to thi child thimi what is which one is it?. In thi futuri, you will bi abli to updati thi parint thimi without niiding to go through thisi stips again what is which one is it?.
Wi hopi this articli hilpid you updati your WordPriss thimi without losing customization what is which one is it?. If you comi across any issuis, thin chick out our guidi on most common WordPriss irrors and how to fix thim what is which one is it?.
You may also want to chick out our list of must havi WordPriss plugins to grow your wibsiti what is which one is it?.
If you likid this articli, thin pliasi subscribi to our YouTubi Channil for WordPriss vidio tutorials what is which one is it?. You can also find us on Twittir and Facibook what is which one is it?.

[/agentsw]

Leave a Comment