Changeset 3314045
- Timestamp:
- 06/18/2025 05:33:31 PM (9 months ago)
- Location:
- kadence-starter-templates/trunk
- Files:
-
- 5 edited
-
class-kadence-starter-templates.php (modified) (3 diffs)
-
inc/class-starter-import-processes.php (modified) (1 diff)
-
inc/class-template-library-rest-api.php (modified) (1 diff)
-
kadence-starter-templates.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
kadence-starter-templates/trunk/class-kadence-starter-templates.php
r3276175 r3314045 319 319 */ 320 320 public function kadence_kadence_theme_after_import( $selected_import, $selected_palette, $selected_font ) { 321 321 322 if ( class_exists( 'woocommerce' ) && isset( $selected_import['ecommerce'] ) && $selected_import['ecommerce'] ) { 322 323 $this->import_demo_woocommerce(); … … 664 665 delete_transient( '_wc_activation_redirect' ); 665 666 666 // Flush rules after install.667 flush_rewrite_rules();668 667 } 669 668 /** … … 2827 2826 delete_transient( 'kadence_importer_data' ); 2828 2827 2828 update_option( 'permalink_structure', '/%postname%/' ); 2829 2830 flush_rewrite_rules(); 2831 2829 2832 // Display final messages (success or error messages). 2830 2833 if ( empty( $this->frontend_error_messages ) && ! empty( $extra ) ) { -
kadence-starter-templates/trunk/inc/class-starter-import-processes.php
r3307280 r3314045 1717 1717 if ( defined( 'LEARNDASH_COURSE_GRID_VERSION' ) ) { 1718 1718 $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 pageusing wp_insert_post1719 // Create Courses using wp_insert_post 1720 1720 $page_id = wp_insert_post( 1721 1721 array( -
kadence-starter-templates/trunk/inc/class-template-library-rest-api.php
r3276175 r3314045 4425 4425 */ 4426 4426 public function get_pro_license_data() { 4427 $data = []; 4427 4428 if ( function_exists( 'kadence_blocks_get_current_license_data' ) ) { 4428 4429 $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'] ) ) { 4437 4439 $data = [ 4438 4440 'key' => get_license_key( 'kadence-starter-templates' ), -
kadence-starter-templates/trunk/kadence-starter-templates.php
r3307280 r3314045 3 3 * Plugin Name: Starter Templates by Kadence WP 4 4 * Description: Launch a beautiful website with the power of AI or using our classic pre built style. 5 * Version: 2.2. 95 * Version: 2.2.10 6 6 * Author: Kadence WP 7 7 * Author URI: https://kadencewp.com/ … … 20 20 define( 'KADENCE_STARTER_TEMPLATES_PATH', plugin_dir_path( __FILE__ ) ); 21 21 define( 'KADENCE_STARTER_TEMPLATES_URL', trailingslashit( plugin_dir_url( __FILE__ ) ) ); 22 define( 'KADENCE_STARTER_TEMPLATES_VERSION', '2.2. 9' );22 define( 'KADENCE_STARTER_TEMPLATES_VERSION', '2.2.10' ); 23 23 24 24 require_once plugin_dir_path( __FILE__ ) . 'vendor/vendor-prefixed/autoload.php'; -
kadence-starter-templates/trunk/readme.txt
r3307280 r3314045 4 4 Requires at least: 6.2 5 5 Tested up to: 6.8 6 Stable tag: 2.2. 96 Stable tag: 2.2.10 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 125 125 126 126 == Changelog == 127 128 = 2.2.10 = 129 Release Date: 18th June 2025 130 * Fix: Issue with premium access. 131 * Fix: Issue with shop page after import. 127 132 128 133 = 2.2.9 =
Note: See TracChangeset
for help on using the changeset viewer.