Changeset 2437931
- Timestamp:
- 12/12/2020 01:31:40 PM (5 years ago)
- Location:
- munk-sites
- Files:
-
- 50 added
- 3 edited
-
tags/1.0.6 (added)
-
tags/1.0.6/LICENSE.txt (added)
-
tags/1.0.6/assets (added)
-
tags/1.0.6/assets/css (added)
-
tags/1.0.6/assets/css/munk-sites.css (added)
-
tags/1.0.6/assets/css/munk-sites.css.map (added)
-
tags/1.0.6/assets/css/owl.carousel.css (added)
-
tags/1.0.6/assets/css/owl.carousel.min.css (added)
-
tags/1.0.6/assets/css/owl.theme.default.css (added)
-
tags/1.0.6/assets/css/owl.theme.default.min.css (added)
-
tags/1.0.6/assets/css/owl.theme.green.css (added)
-
tags/1.0.6/assets/css/owl.theme.green.min.css (added)
-
tags/1.0.6/assets/images (added)
-
tags/1.0.6/assets/images/check.svg (added)
-
tags/1.0.6/assets/images/content.svg (added)
-
tags/1.0.6/assets/images/done.svg (added)
-
tags/1.0.6/assets/images/options.svg (added)
-
tags/1.0.6/assets/images/plugins.svg (added)
-
tags/1.0.6/assets/images/welcome.svg (added)
-
tags/1.0.6/assets/js (added)
-
tags/1.0.6/assets/js/backend.js (added)
-
tags/1.0.6/assets/js/owl.carousel.js (added)
-
tags/1.0.6/assets/js/owl.carousel.min.js (added)
-
tags/1.0.6/assets/placeholder (added)
-
tags/1.0.6/assets/placeholder/placeholder.jpg (added)
-
tags/1.0.6/assets/sass (added)
-
tags/1.0.6/assets/sass/_check.scss (added)
-
tags/1.0.6/assets/sass/munk-sites.scss (added)
-
tags/1.0.6/classess (added)
-
tags/1.0.6/classess/class-ajax.php (added)
-
tags/1.0.6/classess/class-munk-sites-compatibility-elementor.php (added)
-
tags/1.0.6/classess/class-placeholder.php (added)
-
tags/1.0.6/classess/class-plugin.php (added)
-
tags/1.0.6/classess/class-sites.php (added)
-
tags/1.0.6/classess/class-tgm.php (added)
-
tags/1.0.6/importer (added)
-
tags/1.0.6/importer/class-logger-serversentevents.php (added)
-
tags/1.0.6/importer/class-logger.php (added)
-
tags/1.0.6/importer/class-wxr-import-info.php (added)
-
tags/1.0.6/importer/class-wxr-import-ui.php (added)
-
tags/1.0.6/importer/class-wxr-importer.php (added)
-
tags/1.0.6/languages (added)
-
tags/1.0.6/languages/munk-sites.pot (added)
-
tags/1.0.6/munk-sites.php (added)
-
tags/1.0.6/readme.txt (added)
-
tags/1.0.6/templates (added)
-
tags/1.0.6/templates/dashboard.php (added)
-
tags/1.0.6/templates/header.php (added)
-
tags/1.0.6/templates/modal.php (added)
-
tags/1.0.6/templates/preview.php (added)
-
trunk/classess/class-ajax.php (modified) (2 diffs)
-
trunk/munk-sites.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
munk-sites/trunk/classess/class-ajax.php
r2182489 r2437931 564 564 $this->_import_widgets( $customize_data['widgets'] ); 565 565 } 566 567 $this->_import_elementor_template_kit(); // update elementor_active_kit 566 568 } 567 569 … … 675 677 676 678 } 679 680 /** 681 * Import widgets 682 */ 683 function _import_elementor_template_kit() { 684 685 // bail if elementor is not installed 686 if ( ! did_action( 'elementor/loaded' ) ) { 687 return false; 688 } 689 690 // find imported template kit and update elementor_active_kit option 691 $args = array( 692 'fields' => 'ids', // Only get post IDs 693 'post_type' => 'elementor_library', 694 'post_status' => 'publish', 695 'numberposts' => 1, 696 'meta_query' => array( 697 array( 698 'key' => '_munk_sites_imported_post', 699 'value' => '1', 700 ), 701 array( 702 'key' => '_elementor_template_type', 703 'value' => 'kit', 704 ), 705 ), 706 ); 707 $query = get_posts( $args ); 708 709 if ( ! empty( $query ) && isset( $query[0] ) ) { 710 update_option( 'elementor_active_kit', $query[0] ); 711 } 712 713 } 677 714 678 715 -
munk-sites/trunk/munk-sites.php
r2401611 r2437931 24 24 * Plugin URI: https://wpmunk.com/instant-sites/ 25 25 * Description: Ready to use instant sites built for Elementor Page Builder,the WordPress Gutenberg Editor and Beaver Builder. Import free designs with one click and get started with amazing website. 26 * Version: 1.0. 526 * Version: 1.0.6 27 27 * Author: MetricThemes 28 28 * Author URI: https://wpmunk.com … … 34 34 35 35 36 define( 'MUNK_SITES_VERSION', '1.0. 5' );36 define( 'MUNK_SITES_VERSION', '1.0.6' ); 37 37 define( 'MUNK_SITES_URL', untrailingslashit( plugins_url( '', __FILE__ ) ) ); 38 38 define( 'MUNK_SITES_PATH',dirname( __FILE__ ) ); -
munk-sites/trunk/readme.txt
r2401611 r2437931 7 7 Tested up to: 5.5 8 8 Requires PHP: 5.6 9 Stable tag: 1.0. 59 Stable tag: 1.0.6 10 10 License: GPLv2 or later 11 11 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 154 154 155 155 == Changelog == 156 = 1.0.6 = 157 * Addded elementor template kit option 158 156 159 = 1.0.5 = 157 160 * Fixed license check for pro version
Note: See TracChangeset
for help on using the changeset viewer.