Changeset 3068460
- Timestamp:
- 04/10/2024 11:47:04 AM (12 months ago)
- Location:
- ele-custom-skin/trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
ele-custom-skin/trunk/assets/css/ecs-style.css
r2592119 r3068460 1 1 /* Elementor Custom Skin */ 2 2 /* https://www.dudaster.com */ 3 .swiper-container.swiper-initialized .ecs-posts{ 4 overflow:visible; 5 } 3 6 .ecs-post-loop .elementor-page-title{ 4 7 display:block; -
ele-custom-skin/trunk/ele-custom-skin.php
r2774133 r3068460 2 2 /* 3 3 * Plugin Name: Ele Custom Skin 4 * Version: 3.1. 74 * Version: 3.1.8 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 … … 11 11 * License: GPLv3 12 12 * License URI: http://www.gnu.org/licenses/gpl-3.0 13 * Elementor tested up to: 3. 8.014 * Elementor Pro tested up to: 3. 8.013 * Elementor tested up to: 3.20.0 14 * Elementor Pro tested up to: 3.20.0 15 15 */ 16 16 … … 21 21 define( 'ELECS_NAME', plugin_basename( __FILE__ )); 22 22 define( 'ELECS_URL', plugin_dir_url( __FILE__ )); 23 define ('ELECS_VER','3.1. 7');23 define ('ELECS_VER','3.1.8'); 24 24 25 25 include_once ELECS_DIR.'includes/ecs-notices.php'; -
ele-custom-skin/trunk/includes/ajax-pagination.php
r2592119 r3068460 255 255 [ 256 256 '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 ], 258 260 'selector' => '{{WRAPPER}} .ecs-load-more-button .elementor-button', 259 261 ] … … 294 296 'label' => __( 'Background Color', 'ele-custom-skin' ), 295 297 '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, 299 300 ], 300 301 'selectors' => [ -
ele-custom-skin/trunk/includes/enqueue-styles.php
r2316646 r3068460 18 18 WHERE $wpdb->posts.post_status='publish'" 19 19 ); 20 $options= false;20 $options=array(); 21 21 foreach ( $templates as $template ) { 22 22 $options[ $template->ID ] = strtotime($template->post_modified); 23 23 } 24 return $options;24 if(empty($options)) return false; return $options; 25 25 } 26 26 public function frontend_styles() { -
ele-custom-skin/trunk/modules/loop-item/module.php
r2774133 r3068460 83 83 // Add Plugin actions 84 84 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(); 87 87 88 88 } -
ele-custom-skin/trunk/readme.txt
r2774133 r3068460 4 4 Donate link: https://www.paypal.me/dudaster 5 5 Requires at least: 5.0 6 Tested up to: 6.2. 07 Stable tag: 3.1. 76 Tested up to: 6.2.1 7 Stable tag: 3.1.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 63 63 64 64 == Changelog == 65 66 = 3.1.8 = 67 * Replaced depricated code 65 68 66 69 = 3.1.7 = -
ele-custom-skin/trunk/skins/skin-custom.php
r2703167 r3068460 6 6 use Elementor\Group_Control_Image_Size; 7 7 use Elementor\Group_Control_Typography; 8 //use Elementor\Scheme_Color;9 use Elementor\ Scheme_Typography;8 use Elementor\Core\Schemes\Color; 9 use Elementor\Core\Scheme\Typography; 10 10 use Elementor\Widget_Base; 11 11 use ElementorPro\Plugin; … … 363 363 364 364 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">'; 366 366 $this->grid_settings['allow'] = false; 367 367 } else {// we don't use custom grid if slider is activated
Note: See TracChangeset
for help on using the changeset viewer.