Plugin Directory

Changeset 2631371


Ignore:
Timestamp:
11/17/2021 11:54:50 AM (3 years ago)
Author:
dudaster
Message:

v3.1.4

Location:
ele-custom-skin/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • ele-custom-skin/trunk/ele-custom-skin.php

    r2592119 r2631371  
    22/*
    33 * Plugin Name: Ele Custom Skin
    4  * Version: 3.1.3
     4 * Version: 3.1.4
    55 * Description: Elementor Custom Skin for Posts and Archive Posts. You can create a skin as you want.
    66 * Plugin URI: https://dudaster.com
     
    2121define( 'ELECS_NAME', plugin_basename( __FILE__ ));
    2222define( 'ELECS_URL', plugin_dir_url( __FILE__ ));
    23 define ('ELECS_VER','3.1.3');
     23define ('ELECS_VER','3.1.4');
    2424
    2525include_once ELECS_DIR.'includes/ecs-notices.php';
  • ele-custom-skin/trunk/modules/loop-item/widgets/loop-item.php

    r2288535 r2631371  
    108108
    109109    if ( $this->show_nice() ) {
    110      $this->_content_template();
     110     $this->content_template();
    111111    } else {
    112112       echo "{{ecs-article}}";
     
    125125    }
    126126 
    127   protected function _content_template() {
     127  protected function content_template() {
    128128   
    129129  ?>
  • ele-custom-skin/trunk/readme.txt

    r2592122 r2631371  
    44Donate link: https://www.paypal.me/dudaster
    55Requires at least: 5.0
    6 Tested up to: 5.8
    7 Stable tag: 3.1.3
     6Tested up to: 5.8.2
     7Stable tag: 3.1.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6565== Changelog ==
    6666
     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
    6770
    6871= 3.1.3 =
    69 * Fixed issues with Elementor PRO 3.4.
     72* Fixed CSS issue with Elementor PRO 3.4.
    7073
    7174= 3.1.2 =
  • ele-custom-skin/trunk/theme-builder/documents/custom-grid.php

    r2367791 r2631371  
    1313
    1414        $properties['condition_type'] = 'custom_grid';
    15         $properties['location'] = 'custom_grid';
     15        $properties['location'] = 'single';
    1616            $properties['support_kit'] = true;
    1717        $properties['support_site_editor'] = true;
     
    2929 
    3030    public function get_name() {
     31        return 'custom_grid';
     32    }
     33 
     34  public static function get_type() {
    3135        return 'custom_grid';
    3236    }
  • ele-custom-skin/trunk/theme-builder/documents/loop.php

    r2367791 r2631371  
    1515        $properties['condition_type'] = 'loop';
    1616    //$properties['location'] = 'archive';
    17         $properties['location'] = 'loop';
     17        $properties['location'] = 'single';
    1818            $properties['support_kit'] = true;
    1919        $properties['support_site_editor'] = true;
     
    2222
    2323    public function get_name() {
     24        return 'loop';
     25    }
     26 
     27  public static function get_type() {
    2428        return 'loop';
    2529    }
Note: See TracChangeset for help on using the changeset viewer.