File: /storage/v6964/mangomitra/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;
}