Plugin Directory

Changeset 3314045


Ignore:
Timestamp:
06/18/2025 05:33:31 PM (9 months ago)
Author:
britner
Message:

2.2.10

Location:
kadence-starter-templates/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • kadence-starter-templates/trunk/class-kadence-starter-templates.php

    r3276175 r3314045  
    319319     */
    320320    public function kadence_kadence_theme_after_import( $selected_import, $selected_palette, $selected_font ) {
     321
    321322        if ( class_exists( 'woocommerce' ) && isset( $selected_import['ecommerce'] ) && $selected_import['ecommerce'] ) {
    322323            $this->import_demo_woocommerce();
     
    664665        delete_transient( '_wc_activation_redirect' );
    665666
    666         // Flush rules after install.
    667         flush_rewrite_rules();
    668667    }
    669668    /**
     
    28272826        delete_transient( 'kadence_importer_data' );
    28282827
     2828        update_option( 'permalink_structure', '/%postname%/' );
     2829
     2830        flush_rewrite_rules();
     2831
    28292832        // Display final messages (success or error messages).
    28302833        if ( empty( $this->frontend_error_messages ) && ! empty( $extra ) ) {
  • kadence-starter-templates/trunk/inc/class-starter-import-processes.php

    r3307280 r3314045  
    17171717                        if ( defined( 'LEARNDASH_COURSE_GRID_VERSION' ) ) {
    17181718                            $page_content = '<!-- wp:learndash/ld-course-grid {"per_page":"12","thumbnail_size":"medium","ribbon":false,"title_clickable":true,"post_meta":false,"button":true,"pagination":"false","grid_height_equal":true,"progress_bar":true,"filter":false,"card":"grid-3","items_per_row":"3","font_family_title":"inter","font_family_description":"inter","font_size_title":"24px","font_size_description":"14px","font_color_description":"#4a4a68","id":"ld-cg-lxdnpir6oz","filter_search":false,"filter_price":false,"className":"home-course-grid"} /-->';
    1719                             // Create Shop page using wp_insert_post
     1719                            // Create Courses using wp_insert_post
    17201720                            $page_id = wp_insert_post(
    17211721                                array(
  • kadence-starter-templates/trunk/inc/class-template-library-rest-api.php

    r3276175 r3314045  
    44254425     */
    44264426    public function get_pro_license_data() {
     4427        $data = [];
    44274428        if ( function_exists( 'kadence_blocks_get_current_license_data' ) ) {
    44284429            $data = kadence_blocks_get_current_license_data();
    4429             if ( empty( $data['key'] ) ) {
    4430                 $data = [
    4431                     'key'     => get_license_key( 'kadence-starter-templates' ),
    4432                     'product' => 'kadence-starter-templates',
    4433                     'email'   => '',
    4434                 ];
    4435             }
    4436         } else {
     4430        }
     4431        if ( empty( $data['key'] ) && function_exists( 'KadenceWP\KadencePro\StellarWP\Uplink\get_license_key' ) ) {
     4432            $data = [
     4433                'key'     => \KadenceWP\KadencePro\StellarWP\Uplink\get_license_key( 'kadence-theme-pro' ),
     4434                'product' => 'kadence-theme-pro',
     4435                'email'   => '',
     4436            ];
     4437        }
     4438        if ( empty( $data['key'] ) ) {
    44374439            $data = [
    44384440                'key'     => get_license_key( 'kadence-starter-templates' ),
  • kadence-starter-templates/trunk/kadence-starter-templates.php

    r3307280 r3314045  
    33 * Plugin Name: Starter Templates by Kadence WP
    44 * Description: Launch a beautiful website with the power of AI or using our classic pre built style.
    5  * Version: 2.2.9
     5 * Version: 2.2.10
    66 * Author: Kadence WP
    77 * Author URI: https://kadencewp.com/
     
    2020define( 'KADENCE_STARTER_TEMPLATES_PATH', plugin_dir_path( __FILE__ ) );
    2121define( 'KADENCE_STARTER_TEMPLATES_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) );
    22 define( 'KADENCE_STARTER_TEMPLATES_VERSION', '2.2.9' );
     22define( 'KADENCE_STARTER_TEMPLATES_VERSION', '2.2.10' );
    2323
    2424require_once plugin_dir_path( __FILE__ ) . 'vendor/vendor-prefixed/autoload.php';
  • kadence-starter-templates/trunk/readme.txt

    r3307280 r3314045  
    44Requires at least: 6.2
    55Tested up to: 6.8
    6 Stable tag: 2.2.9
     6Stable tag: 2.2.10
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    125125
    126126== Changelog ==
     127
     128= 2.2.10 =
     129Release Date: 18th June 2025
     130* Fix: Issue with premium access.
     131* Fix: Issue with shop page after import.
    127132
    128133= 2.2.9 =
Note: See TracChangeset for help on using the changeset viewer.