HEX
Server: nginx/1.27.1
System: Linux in-4 5.15.0-131-generic #141-Ubuntu SMP Fri Jan 10 21:18:28 UTC 2025 x86_64
User: ilikadirect (1186)
PHP: 7.4.33
Disabled: exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source
Upload Files
File: /storage/v6964/gopalak/public_html/wp-content/themes/open-shop/customizer/customizer.php
<?php 
/**
 * all customizer setting includeed
 *
 * @param  
 * @return mixed|string
 */
function open_shop_customize_register( $wp_customize ){
//Registered panel and section
require OPEN_SHOP_THEME_DIR . '/customizer/register-panels-and-sections.php';	
//site identity
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/set-identity.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/header.php';	
//Header
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/above-header.php';	
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/main-header.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/header/loader.php';
//Footer
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/footer/above-footer.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/footer/widget-footer.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/footer/bottom-footer.php';
//social Icon
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/social-icon/social-icon.php';
//Blog
require OPEN_SHOP_THEME_DIR . '/customizer/section/layout/blog/blog.php';
//Color Option
require OPEN_SHOP_THEME_DIR . '/customizer/section/color/global-color.php';
//woo-product
require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/product.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/single-product.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/cart.php';
require OPEN_SHOP_THEME_DIR . '/customizer/section/woo/shop.php';
// scroller
if ( class_exists('Open_Shop_Customize_Control_Scroll')){
      $scroller = new Open_Shop_Customize_Control_Scroll();
  }
}
add_action('customize_register','open_shop_customize_register');
function open_shop_is_json( $string ){
    return is_string( $string ) && is_array( json_decode( $string, true ) ) ? true : false;
}