Plugin Directory

Changeset 3461190


Ignore:
Timestamp:
02/14/2026 04:58:29 AM (7 weeks ago)
Author:
domainlee
Message:

Updated

Location:
crt-manage
Files:
2 added
5 deleted
4 edited

Legend:

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

    r3461154 r3461190  
    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.0
     5 * Version: 1.5.1
    66 * Author: Domainlee
    77 * Author URI: https://crthemes.com/
  • crt-manage/trunk/includes/customizer/addons/addons.php

    r3461154 r3461190  
    502502        );
    503503
    504         $categories['crt_manage_woocommerce'] = array(
    505             'title' => __( 'CRThemes Woocommerce', 'crt-manage' ),
    506             'icon'  => 'fa fa-plug',
    507         );
     504        if(CRT_MANAGE_IS_WOO) {
     505            $categories['crt_manage_woocommerce'] = array(
     506                'title' => __( 'CRThemes Woocommerce', 'crt-manage' ),
     507                'icon'  => 'fa fa-plug',
     508            );
     509        }
    508510
    509511        $categories['crt_manage_popup'] = array(
  • crt-manage/trunk/includes/customizer/addons/utilities.php

    r3461154 r3461190  
    12451245        // Single Pages
    12461246//        print_r(is_shop());die;
    1247         if (( is_single() || is_front_page() || is_page() || is_404()) && !is_shop() ) {
     1247        if (( is_single() || is_front_page() || is_page() || is_404()) && (CRT_MANAGE_IS_WOO && !is_shop()) ) {
    12481248
    12491249            if ( is_single() ) {
  • crt-manage/trunk/readme.txt

    r3461154 r3461190  
    44Requires at least: 4.0
    55Tested up to: 6.9
    6 Stable tag: 1.5.0
     6Stable tag: 1.5.1
    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.