remove_setting( 'vw_bakery_topbar_hide_show' ); $wp_customize->remove_control( 'vw_bakery_topbar_hide_show' ); $wp_customize->remove_setting( 'vw_bakery_topbar_padding_top_bottom' ); $wp_customize->remove_control( 'vw_bakery_topbar_padding_top_bottom' ); $wp_customize->remove_setting( 'vw_bakery_search_hide_show' ); $wp_customize->remove_control( 'vw_bakery_search_hide_show' ); $wp_customize->remove_setting( 'vw_bakery_search_font_size' ); $wp_customize->remove_control( 'vw_bakery_search_font_size' ); $wp_customize->remove_setting( 'vw_bakery_location_address_icon' ); $wp_customize->remove_control( 'vw_bakery_location_address_icon' ); $wp_customize->remove_setting( 'vw_bakery_location' ); $wp_customize->remove_control( 'vw_bakery_location' ); $wp_customize->remove_setting( 'vw_bakery_timing_icon' ); $wp_customize->remove_control( 'vw_bakery_timing_icon' ); $wp_customize->remove_setting( 'vw_bakery_opening_text' ); $wp_customize->remove_control( 'vw_bakery_opening_text' ); $wp_customize->remove_setting( 'vw_bakery_opening_time' ); $wp_customize->remove_control( 'vw_bakery_opening_time' ); $wp_customize->remove_setting( 'vw_bakery_contact_link' ); $wp_customize->remove_control( 'vw_bakery_contact_link' ); $wp_customize->remove_setting( 'vw_bakery_cart_icon' ); $wp_customize->remove_control( 'vw_bakery_cart_icon' ); $wp_customize->remove_setting( 'vw_bakery_resp_topbar_hide_show' ); $wp_customize->remove_control( 'vw_bakery_resp_topbar_hide_show' ); $wp_customize->remove_setting( 'vw_bakery_stickyheader_hide_show' ); $wp_customize->remove_control( 'vw_bakery_stickyheader_hide_show' ); $wp_customize->remove_setting( 'vw_bakery_sticky_header' ); $wp_customize->remove_control( 'vw_bakery_sticky_header' ); $wp_customize->remove_setting( 'vw_bakery_sticky_header_padding' ); $wp_customize->remove_control( 'vw_bakery_sticky_header_padding' ); $wp_customize->remove_setting( 'vw_bakery_contact_button_text' ); $wp_customize->remove_control( 'vw_bakery_contact_button_text' ); $wp_customize->remove_setting( 'vw_bakery_slider_button_text' ); $wp_customize->remove_control( 'vw_bakery_slider_button_text' ); $wp_customize->remove_setting( 'vw_bakery_slider_content_hide_show' ); $wp_customize->remove_control( 'vw_bakery_slider_content_hide_show' ); $wp_customize->remove_section( 'vw_bakery_about' ); $wp_customize->remove_section( 'vw_bakery_social_links' ); } add_action( 'customize_register', 'cafe_coffee_shop_customize_register', 11 ); function cafe_coffee_shop_header_style() { if ( get_header_image() ) : $custom_css = " #header{ background-image:url('".esc_url(get_header_image())."'); background-position: center top; background-size: 100%; }"; wp_add_inline_style( 'cafe-coffee-shop-style', $custom_css ); endif; } add_action( 'wp_enqueue_scripts', 'cafe_coffee_shop_header_style' ); function cafe_coffee_shop_scripts() { wp_enqueue_script( 'Custom JS ', get_stylesheet_directory_uri() . '/js/custom.js', array('jquery') ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } add_action( 'wp_enqueue_scripts', 'cafe_coffee_shop_scripts' ); function cafe_coffee_shop_customizer ( $wp_customize ) { //Slider $wp_customize->add_setting('cafe_coffee_shop_slider_go_btn',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cafe_coffee_shop_slider_go_btn',array( 'description' => __('GET PRO','cafe-coffee-shop'), 'section'=> 'vw_bakery_slidersettings', 'type'=> 'hidden' )); $wp_customize->add_setting('cafe_coffee_shop_designation_text',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cafe_coffee_shop_designation_text',array( 'label' => __('Slider Small Text','cafe-coffee-shop'), 'section' => 'vw_bakery_slidersettings', 'type' => 'text' )); //About section $wp_customize->add_section( 'cafe_coffee_shop_about_section' , array( 'title' => __( 'About us Section', 'cafe-coffee-shop' ), 'description' => __('GET PRO','cafe-coffee-shop'), 'priority' => 20, 'panel' => 'vw_bakery_homepage_panel' ) ); $wp_customize->add_setting('cafe_coffee_shop_section_title',array( 'default'=> '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('cafe_coffee_shop_section_title',array( 'label' => __('Add Section Text','cafe-coffee-shop'), 'input_attrs' => array( 'placeholder' => __( 'OUR STORY', 'cafe-coffee-shop' ), ), 'section'=> 'cafe_coffee_shop_about_section', 'type'=> 'text' )); $wp_customize->add_setting( 'cafe_coffee_shop_about_page' , array( 'default' => '', 'sanitize_callback' => 'cafe_coffee_shop_sanitize_dropdown_pages' ) ); $wp_customize->add_control( 'cafe_coffee_shop_about_page' , array( 'label' => __( 'Select About Page', 'cafe-coffee-shop' ), 'section' => 'cafe_coffee_shop_about_section', 'type' => 'dropdown-pages' ) ); $wp_customize->add_setting( 'cafe_coffee_shop_about_excerpt_number', array( 'default' => 50, 'transport' => 'refresh', 'sanitize_callback' => 'cafe_coffee_shop_sanitize_number_range' ) ); $wp_customize->add_control( 'cafe_coffee_shop_about_excerpt_number', array( 'label' => esc_html__( 'About Excerpt length','cafe-coffee-shop' ), 'section' => 'cafe_coffee_shop_about_section', 'type' => 'range', 'settings' => 'cafe_coffee_shop_about_excerpt_number', 'input_attrs' => array( 'step' => 5, 'min' => 0, 'max' => 50, ), ) ); } add_action( 'customize_register', 'cafe_coffee_shop_customizer' ); /** * Enqueue block editor style */ function cafe_coffee_shop_block_editor_styles() { wp_enqueue_style( 'cafe-coffee-shop-block-patterns-style-editor', get_theme_file_uri( '/inc/block-patterns/css/block-editor.css' ), false, '1.0', 'all' ); } add_action( 'enqueue_block_editor_assets', 'cafe_coffee_shop_block_editor_styles' ); function cafe_coffee_shop_sanitize_choices( $input, $setting ) { global $wp_customize; $control = $wp_customize->get_control( $setting->id ); if ( array_key_exists( $input, $control->choices ) ) { return $input; } else { return $setting->default; } } function cafe_coffee_shop_sanitize_select( $input, $setting ){ $input = sanitize_key($input); $choices = $setting->manager->get_control( $setting->id )->choices; return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); } function cafe_coffee_shop_sanitize_dropdown_pages( $page_id, $setting ) { $page_id = absint( $page_id ); return ( 'publish' == get_post_status( $page_id ) ? $page_id : $setting->default ); } function cafe_coffee_shop_sanitize_number_range( $number, $setting ) { $number = absint( $number ); $atts = $setting->manager->get_control( $setting->id )->input_attrs; $min = ( isset( $atts['min'] ) ? $atts['min'] : $number ); $max = ( isset( $atts['max'] ) ? $atts['max'] : $number ); $step = ( isset( $atts['step'] ) ? $atts['step'] : 1 ); return ( $min <= $number && $number <= $max && is_int( $number / $step ) ? $number : $setting->default ); } // Customizer Pro load_template( ABSPATH . WPINC . '/class-wp-customize-section.php' ); class Cafe_Coffee_Shop_Customize_Section_Pro extends WP_Customize_Section { public $type = 'cafe-coffee-shop'; public $pro_text = ''; public $pro_url = ''; public function json() { $json = parent::json(); $json['pro_text'] = $this->pro_text; $json['pro_url'] = esc_url( $this->pro_url ); return $json; } protected function render_template() { ?>
  • {{ data.title }} <# if ( data.pro_text && data.pro_url ) { #> {{ data.pro_text }} <# } #>

  • setup_actions(); } return $instance; } private function __construct() {} private function setup_actions() { // Register panels, sections, settings, controls, and partials. add_action( 'customize_register', array( $this, 'sections' ) ); // Register scripts and styles for the controls. add_action( 'customize_controls_enqueue_scripts', array( $this, 'enqueue_control_scripts' ), 0 ); } public function sections( $manager ) { // Register custom section types. $manager->register_section_type( 'Cafe_Coffee_Shop_Customize_Section_Pro' ); // Register sections. $manager->add_section( new Cafe_Coffee_Shop_Customize_Section_Pro( $manager, 'cafe_coffee_shop_upgrade_pro_link',array( 'priority' => 1, 'title' => esc_html__( 'COFFEE SHOP PRO', 'cafe-coffee-shop' ), 'pro_text' => esc_html__( 'UPGRADE PRO', 'cafe-coffee-shop' ), 'pro_url' => esc_url('https://www.themescaliber.com/products/cafe-wordpress-theme'), ) ) ); // Register sections. $manager->add_section(new Cafe_Coffee_Shop_Customize_Section_Pro($manager,'cafe_coffee_shop_get_started_link',array( 'priority' => 1, 'title' => esc_html__( 'DOCUMENTATION', 'cafe-coffee-shop' ), 'pro_text' => esc_html__( 'DOCS', 'cafe-coffee-shop' ), 'pro_url' => esc_url('https://preview.themescaliber.com/doc/free-cafe/'), ))); } public function enqueue_control_scripts() { wp_enqueue_script( 'cafe-coffee-shop-customize-controls', get_stylesheet_directory_uri() . '/js/customize-controls-child.js', array( 'customize-controls' ) ); wp_enqueue_style( 'cafe-coffee-shop-customize-controls', get_stylesheet_directory_uri() . '/css/customize-controls-child.css' ); } } VW_Bakery_Customize::get_instance(); /* Theme Setup */ if ( ! function_exists( 'cafe_coffee_shop_setup' ) ) : function cafe_coffee_shop_setup() { $GLOBALS['content_width'] = apply_filters( 'cafe_coffee_shop_content_width', 640 ); add_theme_support( 'automatic-feed-links' ); add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-slider' ); add_theme_support( 'post-thumbnails' ); add_theme_support( 'title-tag' ); add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); add_theme_support( 'responsive-embeds' ); add_theme_support( 'html5', array( 'comment-list', 'search-form', 'comment-form', ) ); add_theme_support( 'custom-logo', array( 'height' => 240, 'width' => 240, 'flex-height' => true, ) ); add_theme_support( 'custom-background', array( 'default-color' => 'ffffff' ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css', vw_bakery_font_url() ) ); // Theme Activation Notice global $pagenow; if (is_admin() && ('themes.php' == $pagenow) && isset( $_GET['activated'] )) { add_action('admin_notices', 'cafe_coffee_shop_activation_notice'); } } endif; add_action( 'after_setup_theme', 'cafe_coffee_shop_setup' ); // Notice after Theme Activation function cafe_coffee_shop_activation_notice() { echo '
    '; echo '
    '; echo '
    '; echo '

    ' . esc_html__( 'Thanks For Installing the "Cafe Coffee Shop Theme"!', 'cafe-coffee-shop' ) . '

    '; echo '

    ' . esc_html__( 'We’re excited to help you get started with your new theme! Set up your website quickly and easily by importing our demo content and customizing it to suit your needs.', 'cafe-coffee-shop' ) . '

    '; echo ''; echo '
    '; echo '
    '; echo ''; echo '
    '; echo '
    '; echo '
    '; } function cafe_coffee_shop_init_setup() { define('CAFE_COFFEE_SHOP_FREE_THEME_DOC',__('https://preview.themescaliber.com/doc/free-cafe/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_SUPPORT',__('https://wordpress.org/support/theme/cafe-coffee-shop/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_REVIEW',__('https://wordpress.org/support/theme/cafe-coffee-shop/reviews','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_BUY_NOW',__('https://www.themescaliber.com/products/cafe-wordpress-theme','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_LIVE_DEMO',__('https://preview.themescaliber.com/tc-cafe-pro/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_PRO_DOC',__('https://preview.themescaliber.com/doc/cafe-pro/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_FAQ',__('https://www.themescaliber.com/products/free-cafe-wordpress-themefaqs/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_CONTACT',__('https://www.themescaliber.com/products/free-cafe-wordpress-themecontact/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_COPYRIGHT_CREDIT',__('https://www.themescaliber.com/products/free-cafe-wordpress-theme','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_CHILD_THEME',__('https://developer.wordpress.org/themes/advanced-topics/child-themes/','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_CREDIT',__('https://www.themescaliber.com/products/free-cafe-wordpress-theme','cafe-coffee-shop')); define('CAFE_COFFEE_SHOP_THEME_BUNDLE_BUY_NOW',__('https://www.themescaliber.com/products/wordpress-theme-bundle','cafe-coffee-shop')); if ( ! function_exists( 'cafe_coffee_shop_credit' ) ) { function cafe_coffee_shop_credit(){ echo "".esc_html__('Cafe WordPress Theme','cafe-coffee-shop').""; } } if ( ! defined( 'VW_BAKERY_GO_PRO_URL' ) ) { define( 'VW_BAKERY_GO_PRO_URL', 'https://www.themescaliber.com/products/cafe-wordpress-theme'); } if ( ! defined( 'VW_BAKERY_GETSTARTED_URL' ) ) { define( 'VW_BAKERY_GETSTARTED_URL', 'themes.php?page=cafe_coffee_shop_guide'); } /* getstart */ require get_theme_file_path('/inc/getstart/getstart.php'); /* Block Pattern */ require get_theme_file_path('/inc/block-patterns/block-patterns.php'); /* TGM */ require get_theme_file_path('/inc/tgm/tgm.php'); } add_action( 'after_setup_theme', 'cafe_coffee_shop_init_setup' );