Plugin Directory

Changeset 3068460


Ignore:
Timestamp:
04/10/2024 11:47:04 AM (12 months ago)
Author:
dudaster
Message:

v3.1.8

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

Legend:

Unmodified
Added
Removed
  • ele-custom-skin/trunk/assets/css/ecs-style.css

    r2592119 r3068460  
    11/*  Elementor Custom Skin    */
    22/*  https://www.dudaster.com */
     3.swiper-container.swiper-initialized .ecs-posts{
     4   overflow:visible;
     5}
    36.ecs-post-loop .elementor-page-title{
    47  display:block;
  • ele-custom-skin/trunk/ele-custom-skin.php

    r2774133 r3068460  
    22/*
    33 * Plugin Name: Ele Custom Skin
    4  * Version: 3.1.7
     4 * Version: 3.1.8
    55 * Description: Elementor Custom Skin for Posts and Archive Posts. You can create a skin as you want.
    66 * Plugin URI: https://dudaster.com
     
    1111 * License: GPLv3
    1212 * License URI: http://www.gnu.org/licenses/gpl-3.0
    13  * Elementor tested up to: 3.8.0
    14  * Elementor Pro tested up to: 3.8.0
     13 * Elementor tested up to: 3.20.0
     14 * Elementor Pro tested up to: 3.20.0
    1515*/
    1616
     
    2121define( 'ELECS_NAME', plugin_basename( __FILE__ ));
    2222define( 'ELECS_URL', plugin_dir_url( __FILE__ ));
    23 define ('ELECS_VER','3.1.7');
     23define ('ELECS_VER','3.1.8');
    2424
    2525include_once ELECS_DIR.'includes/ecs-notices.php';
  • ele-custom-skin/trunk/includes/ajax-pagination.php

    r2592119 r3068460  
    255255        [
    256256          'name' => 'loadmore_typography',
    257           'scheme' => \Elementor\Core\Schemes\Typography::TYPOGRAPHY_4,
     257          'global' => [
     258                'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Typography::TYPOGRAPHY_ACCENT,
     259           ],
    258260          'selector' => '{{WRAPPER}} .ecs-load-more-button .elementor-button',
    259261        ]
     
    294296          'label' => __( 'Background Color', 'ele-custom-skin' ),
    295297          'type' => \Elementor\Controls_Manager::COLOR,
    296           'scheme' => [
    297             'type' => \Elementor\Core\Schemes\Color::get_type(),
    298             'value' => \Elementor\Core\Schemes\Color::COLOR_4,
     298          'global' => [
     299            'default' => \Elementor\Core\Kits\Documents\Tabs\Global_Colors::COLOR_ACCENT,
    299300          ],
    300301          'selectors' => [
  • ele-custom-skin/trunk/includes/enqueue-styles.php

    r2316646 r3068460  
    1818          WHERE  $wpdb->posts.post_status='publish'"
    1919                );
    20                 $options=false;
     20                $options=array();
    2121        foreach ( $templates as $template ) {
    2222                    $options[ $template->ID ] = strtotime($template->post_modified);
    2323                }
    24                 return $options;
     24                if(empty($options)) return false; return $options;
    2525    }
    2626  public function frontend_styles() {
  • ele-custom-skin/trunk/modules/loop-item/module.php

    r2774133 r3068460  
    8383        // Add Plugin actions
    8484        add_action( 'elementor/widgets/register', [ $this, 'init_widgets' ] );
    85         add_action( 'elementor/controls/controls_registered', [ $this, 'init_controls' ] );
    86     $this->init_includes();
     85        add_action( 'elementor/controls/register', [ $this, 'init_controls' ] );
     86        $this->init_includes();
    8787 
    8888    }
  • ele-custom-skin/trunk/readme.txt

    r2774133 r3068460  
    44Donate link: https://www.paypal.me/dudaster
    55Requires at least: 5.0
    6 Tested up to: 6.2.0
    7 Stable tag: 3.1.7
     6Tested up to: 6.2.1
     7Stable tag: 3.1.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363
    6464== Changelog ==
     65
     66= 3.1.8 =
     67* Replaced depricated code
    6568
    6669= 3.1.7 =
  • ele-custom-skin/trunk/skins/skin-custom.php

    r2703167 r3068460  
    66use Elementor\Group_Control_Image_Size;
    77use Elementor\Group_Control_Typography;
    8 //use Elementor\Scheme_Color;
    9 use Elementor\Scheme_Typography;
     8use Elementor\Core\Schemes\Color;
     9use Elementor\Core\Scheme\Typography;
    1010use Elementor\Widget_Base;
    1111use ElementorPro\Plugin;
     
    363363
    364364      if($parent_settings[$this->get_id().'_post_slider'] == "yes") {
    365         echo '<div class="elementor-main-swiper swiper-container">';
     365        echo '<div class="elementor-main-swiper swiper-container swiper">';
    366366        $this->grid_settings['allow'] = false;
    367367      } else {// we don't use custom grid if slider is activated
Note: See TracChangeset for help on using the changeset viewer.