Changeset 2631371
- Timestamp:
- 11/17/2021 11:54:50 AM (3 years ago)
- Location:
- ele-custom-skin/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
ele-custom-skin/trunk/ele-custom-skin.php
r2592119 r2631371 2 2 /* 3 3 * Plugin Name: Ele Custom Skin 4 * Version: 3.1. 34 * Version: 3.1.4 5 5 * Description: Elementor Custom Skin for Posts and Archive Posts. You can create a skin as you want. 6 6 * Plugin URI: https://dudaster.com … … 21 21 define( 'ELECS_NAME', plugin_basename( __FILE__ )); 22 22 define( 'ELECS_URL', plugin_dir_url( __FILE__ )); 23 define ('ELECS_VER','3.1. 3');23 define ('ELECS_VER','3.1.4'); 24 24 25 25 include_once ELECS_DIR.'includes/ecs-notices.php'; -
ele-custom-skin/trunk/modules/loop-item/widgets/loop-item.php
r2288535 r2631371 108 108 109 109 if ( $this->show_nice() ) { 110 $this-> _content_template();110 $this->content_template(); 111 111 } else { 112 112 echo "{{ecs-article}}"; … … 125 125 } 126 126 127 protected function _content_template() {127 protected function content_template() { 128 128 129 129 ?> -
ele-custom-skin/trunk/readme.txt
r2592122 r2631371 4 4 Donate link: https://www.paypal.me/dudaster 5 5 Requires at least: 5.0 6 Tested up to: 5.8 7 Stable tag: 3.1. 36 Tested up to: 5.8.2 7 Stable tag: 3.1.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 65 65 == Changelog == 66 66 67 = 3.1.4 = 68 * Fixed error with Custom Grid Loop Item Widget when added to the template. 69 * Fixed issues with the new Theme Builder View 67 70 68 71 = 3.1.3 = 69 * Fixed issueswith Elementor PRO 3.4.72 * Fixed CSS issue with Elementor PRO 3.4. 70 73 71 74 = 3.1.2 = -
ele-custom-skin/trunk/theme-builder/documents/custom-grid.php
r2367791 r2631371 13 13 14 14 $properties['condition_type'] = 'custom_grid'; 15 $properties['location'] = ' custom_grid';15 $properties['location'] = 'single'; 16 16 $properties['support_kit'] = true; 17 17 $properties['support_site_editor'] = true; … … 29 29 30 30 public function get_name() { 31 return 'custom_grid'; 32 } 33 34 public static function get_type() { 31 35 return 'custom_grid'; 32 36 } -
ele-custom-skin/trunk/theme-builder/documents/loop.php
r2367791 r2631371 15 15 $properties['condition_type'] = 'loop'; 16 16 //$properties['location'] = 'archive'; 17 $properties['location'] = ' loop';17 $properties['location'] = 'single'; 18 18 $properties['support_kit'] = true; 19 19 $properties['support_site_editor'] = true; … … 22 22 23 23 public function get_name() { 24 return 'loop'; 25 } 26 27 public static function get_type() { 24 28 return 'loop'; 25 29 }
Note: See TracChangeset
for help on using the changeset viewer.