Plugin Directory

Changeset 3483776


Ignore:
Timestamp:
03/16/2026 11:23:54 AM (3 weeks ago)
Author:
domainlee
Message:

Release 1.5.8

Location:
crt-manage
Files:
2554 added
6 edited

Legend:

Unmodified
Added
Removed
  • crt-manage/trunk/crt-manage.php

    r3482371 r3483776  
    33 * Plugin Name: CRT Manage
    44 * Description: CRT Manage is a front page customizer plugin for Wordpress themes by author domainlee
    5  * Version: 1.5.7
     5 * Version: 1.5.8
    66 * Author: Domainlee
    77 * Author URI: https://crthemes.com/
  • crt-manage/trunk/includes/customizer/addons/addons.php

    r3482371 r3483776  
    559559        );
    560560
    561         if(CRT_MANAGE_IS_WOO) {
     561        global $crt_manage_is_woo;
     562        if($crt_manage_is_woo) {
    562563            $categories['crt_manage_woocommerce'] = array(
    563564                'title' => __( 'CRThemes Woocommerce', 'crt-manage' ),
     
    635636            array( 'CRT_Dual_Button', 'crt-dual-button' ),
    636637            array( 'CRT_Video_Playlist', 'crt-video-playlist' ),
     638            array( 'CRT_Team_Member', 'crt-team-member' ),
    637639
    638640            array( 'CRT_Offcanvas', 'crt-offcanvas' ),
     
    673675            array( 'CRT_Product_Breadcrumbs', 'crt-product-breadcrumbs' ),
    674676            array( 'CRT_Woo_Grid', 'crt-woo-grid' ),
    675             array( 'CRT_Filter_Price', 'crt-filter-price' ),
    676             array( 'CRT_Filter_Taxonomy', 'crt-filter-taxonomy' ),
    677             array( 'CRT_Filter_Attributes', 'crt-filter-attributes' ),
     677//            array( 'CRT_Filter_Price', 'crt-filter-price' ),
     678//            array( 'CRT_Filter_Taxonomy', 'crt-filter-taxonomy' ),
     679//            array( 'CRT_Filter_Attributes', 'crt-filter-attributes' ),
    678680            array( 'CRT_Grid', 'crt-grid' ),
    679681            array( 'CRT_Taxonomy_List', 'crt-taxonomy-list' ),
  • crt-manage/trunk/includes/customizer/addons/modules/crt-search.php

    r3461154 r3483776  
    823823                'size_units' => [ 'px', ],
    824824                'selectors' => [
    825                     '{{WRAPPER}} .crt-data-fetch ul' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
     825                    '{{WRAPPER}} .crt-data-fetch ul' => 'margin: 0;padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
    826826                ],
    827827                'separator' => 'before'
  • crt-manage/trunk/includes/customizer/addons/modules/woocommerce/crt-advanced-filters-pro.php

    r3482371 r3483776  
    7373        );
    7474
    75         $this->add_control(
    76             'advanced_filters_video_tutorial',
    77             [
    78                 'type' => Controls_Manager::RAW_HTML,
    79                 'raw' => __( 'Build powerful Advanced Filters <strong> with Elementor and CRT Builder !</strong> <ul><li><a href="" target="_blank" style="color: #93003c;"><strong>Watch Video Tutorial <span class="dashicons dashicons-video-alt3"></strong></a></li></ul>', 'crt-manage' ),
    80                 'separator' => 'after',
    81                 'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
    82             ]
    83         );
     75//      $this->add_control(
     76//          'advanced_filters_video_tutorial',
     77//          [
     78//              'type' => Controls_Manager::RAW_HTML,
     79//              'raw' => __( 'Build powerful Advanced Filters <strong> with Elementor and CRT Builder !</strong> <ul><li><a href="" target="_blank" style="color: #93003c;"><strong>Watch Video Tutorial <span class="dashicons dashicons-video-alt3"></strong></a></li></ul>', 'crt-manage' ),
     80//              'separator' => 'after',
     81//              'content_classes' => 'elementor-panel-alert elementor-panel-alert-info',
     82//          ]
     83//      );
    8484       
    8585        $post_types = Utilities::get_custom_types_of( 'post', false );
  • crt-manage/trunk/includes/customizer/addons/woocommerce/woocommerce-config.php

    r3461154 r3483776  
    55
    66    public function __construct() {
    7         if(!CRT_MANAGE_IS_WOO) {
     7        global $crt_manage_is_woo;
     8
     9        if(!$crt_manage_is_woo) {
    810            return;
    911        }
  • crt-manage/trunk/readme.txt

    r3482371 r3483776  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 1.5.7
     6Stable tag: 1.5.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.