Setup

Upgrading from Aurora Lite to Aurora Pro

By Daniel Ekay Jun 18, 2026 3 min read
Docs Setup Upgrading from Aurora Lite to Aurora Pro
Share:
Last updated:

If you’ve been using Aurora Lite and want access to the full layout library, Nova compatibility, and ongoing updates, upgrading to Pro is straightforward. Here’s what changes, what you gain, and how to move your settings over without starting from scratch.


Why Upgrade

  • Access to every header, homepage, single post, archive, and footer layout Aurora offers, not just the Lite Default selection
  • Future theme updates delivered through the standard WordPress update mechanism
  • Compatibility with Nova and other supported Aurora addons

Step 1: Purchase a License

  1. Go to aurorawptheme.com and click Get Aurora.
  2. Choose between the Standard License (one site) or the Extended License (unlimited sites).
  3. Complete the checkout. Your license key and Pro theme download link will arrive in your confirmation email immediately.

Step 2: Install the Pro Theme

Pro and Lite are separate themes, so installing Pro means uploading a new theme file rather than updating Lite in place.

WordPress Add Themes screen showing Upload Theme button and file browser for installing a theme from a zip file
  1. Download the Aurora Pro zip from your confirmation email.
  2. Go to Appearance → Themes → Add New → Upload Theme.
  3. Select the Pro zip file and click Install Now.
  4. Click Activate.

For a more detailed walkthrough, see how to install Aurora from a zip file.

Since Lite only ships with the Default layout for each section, there isn’t much to lose by switching. Most Lite users are effectively starting fresh in Pro, just with far more layout options to choose from. If you’d rather test everything before going live, consider setting up a staging site first.


Step 3: Migrate Your Settings (Optional)

If you’ve customized colors, fonts, or other Customizer options in Lite and want to carry them over rather than reconfigure manually, add this snippet via a code snippets plugin and run it once right after activating Pro.

add_action('admin_init', function() {
    if (!isset($_GET['aurora_migrate_lite'])) return;
    if (!current_user_can('manage_options')) return;

    $lite_mods = get_option('theme_mods_aurora-lite');
    if (!$lite_mods) {
        wp_die('No Aurora Lite settings found to migrate.');
    }

    $pro_mods = get_option('theme_mods_aurora-pro', []);

    foreach ($lite_mods as $key => $value) {
        $pro_key = str_replace('aurora_lite_', '', $key);
        $pro_mods[$pro_key] = $value;
    }

    update_option('theme_mods_aurora-pro', $pro_mods);

    wp_die('Settings migrated successfully. Remove this snippet now.');
});

Visit yoursite.com/wp-admin/?aurora_migrate_lite=1 to run it, then remove the snippet. Always back up your site before running migration scripts.


Step 4: Activate Your License

Once Pro is installed and active, you’ll need to activate it using the license key from your confirmation email.

  1. Go to Appearance → Aurora.
  2. Paste your license key into the field.
  3. Click Verify License.
  4. The status should update to Active.
Aurora license activation screen in WordPress admin showing License Key field with Theme is activated confirmation

For a step-by-step walkthrough, see how to activate your Aurora license key.


Standard vs Extended License

StandardExtended
Number of sites1Unlimited
All layouts includedYesYes
Free updatesYesYes
One-time paymentYesYes

Make your blog stand out

Enjoy the ease and flexibility of Aurora. Create stunning blog designs your readers will love, with live preview editing and effortless template mixing and matching enabled.

Get Aurora today for just $39

Get Aurora