parent()->get('Version')); wp_enqueue_style( 'barbecue-cafeteria-style', get_stylesheet_uri(), array( $parentcss ), $theme->get('Version')); wp_enqueue_script( 'comment-reply', '/wp-includes/js/comment-reply.min.js', array(), false, true ); } add_action( 'wp_enqueue_scripts', 'barbecue_cafeteria_enqueue_styles' ); function barbecue_cafeteria_admin_scripts() { // demo CSS wp_enqueue_style( 'barbecue-cafeteria-demo-css', get_theme_file_uri( 'assets/css/demo.css' ) ); } add_action( 'admin_enqueue_scripts', 'barbecue_cafeteria_admin_scripts' ); function barbecue_cafeteria_customize_register($wp_customize){ // Pro Version class BARBECUE_CAFETERIA_Customize_Pro_Version extends WP_Customize_Control { public $type = 'pro_options'; public function render_content() { echo 'For More '. esc_html( $this->label ) .'?'; echo ''; echo ''; echo ' '. esc_html( RESTAURANT_ZONE_BUY_TEXT,'barbecue-cafeteria' ) .''; echo ''; } } // Custom Controls function Barbecue_Cafeteria_sanitize_custom_control( $input ) { return $input; } //Popular item Settings $wp_customize->add_section('barbecue_cafeteria_product_section',array( 'title' => esc_html__('Popular item Settings','barbecue-cafeteria'), 'priority' => null )); $wp_customize->add_setting('barbecue_cafeteria_popular_setting', array( 'default' => false, 'sanitize_callback' => 'restaurant_zone_sanitize_checkbox' )); $wp_customize->add_control( new WP_Customize_Control($wp_customize,'barbecue_cafeteria_popular_setting',array( 'label' => __( 'Enable Disable Popular', 'barbecue-cafeteria' ), 'section' => 'barbecue_cafeteria_product_section', 'settings' => 'barbecue_cafeteria_popular_setting', 'type' => 'checkbox', ))); $wp_customize->add_setting('barbecue_cafeteria_title', array( 'sanitize_callback' => 'sanitize_text_field', )); $wp_customize->add_control('barbecue_cafeteria_title', array( 'label' => __('Title', 'barbecue-cafeteria'), 'section' => 'barbecue_cafeteria_product_section', 'type' => 'text', )); $wp_customize->add_setting( 'barbecue_cafeteria_image_page', array( 'default' => '', 'sanitize_callback' => 'restaurant_zone_sanitize_dropdown_pages' ) ); $wp_customize->add_control( 'barbecue_cafeteria_image_page', array( 'label' => __( 'Select Page', 'barbecue-cafeteria' ), 'description' => __('Image Size 575 x 415','barbecue-cafeteria'), 'section' => 'barbecue_cafeteria_product_section', 'type' => 'dropdown-pages' ) ); if(class_exists('woocommerce')){ $wp_customize->add_setting('barbecue_cafeteria_home_product_per_page',array( 'default' => '', 'sanitize_callback' => 'sanitize_text_field' )); $wp_customize->add_control('barbecue_cafeteria_home_product_per_page',array( 'label' => esc_html__('No Of Products','barbecue-cafeteria'), 'section' => 'barbecue_cafeteria_product_section', 'setting' => 'barbecue_cafeteria_home_product_per_page', 'type' => 'number' )); $barbecue_cafeteria_args = array( 'type' => 'product', 'child_of' => 0, 'parent' => '', 'orderby' => 'term_group', 'order' => 'ASC', 'hide_empty' => false, 'hierarchical' => 1, 'number' => '', 'taxonomy' => 'product_cat', 'pad_counts' => false ); $categories = get_categories( $barbecue_cafeteria_args ); $cats = array(); $i = 0; foreach($categories as $category){ if($i==0){ $default = $category->slug; $i++; } $cats[$category->slug] = $category->name; } $wp_customize->add_setting('barbecue_cafeteria_home_product',array( 'sanitize_callback' => 'restaurant_zone_sanitize_select', )); $wp_customize->add_control('barbecue_cafeteria_home_product',array( 'type' => 'select', 'choices' => $cats, 'label' => __('Select Product Category','barbecue-cafeteria'), 'section' => 'barbecue_cafeteria_product_section', )); } // Pro Version $wp_customize->add_setting( 'pro_version_popular_item_setting', array( 'sanitize_callback' => 'Barbecue_Cafeteria_sanitize_custom_control' )); $wp_customize->add_control( new Barbecue_Cafeteria_Customize_Pro_Version ( $wp_customize,'pro_version_popular_item_setting', array( 'section' => 'barbecue_cafeteria_product_section', 'type' => 'pro_options', 'label' => esc_html__( 'Customizer Options', 'barbecue-cafeteria' ), 'description' => esc_url( RESTAURANT_ZONE_URL ), 'priority' => 100 ))); } add_action('customize_register', 'barbecue_cafeteria_customize_register'); if ( ! function_exists( 'barbecue_cafeteria_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. */ function barbecue_cafeteria_setup() { add_theme_support( 'responsive-embeds' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link https://developer.wordpress.org/themes/functionality/featured-images-post-thumbnails/ */ add_theme_support( 'post-thumbnails' ); add_image_size('barbecue-cafeteria-featured-header-image', 2000, 660, true); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); // Set up the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'restaurant_zone_custom_background_args', array( 'default-color' => '', 'default-image' => '', ) ) ); /** * Add support for core custom logo. * * @link https://codex.wordpress.org/Theme_Logo */ add_theme_support( 'custom-logo', array( 'height' => 50, 'width' => 50, 'flex-width' => true, ) ); add_editor_style( array( '/editor-style.css' ) ); add_theme_support( 'align-wide' ); add_theme_support( 'wp-block-styles' ); } endif; add_action( 'after_setup_theme', 'barbecue_cafeteria_setup' ); /** * Register widget area. * * @link https://developer.wordpress.org/themes/functionality/sidebars/#registering-a-sidebar */ function barbecue_cafeteria_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar', 'barbecue-cafeteria' ), 'id' => 'sidebar', 'description' => esc_html__( 'Add widgets here.', 'barbecue-cafeteria' ), 'before_widget' => '<section id="%1$s" class="widget %2$s">', 'after_widget' => '</section>', 'before_title' => '<h5 class="widget-title">', 'after_title' => '</h5>', ) ); } add_action( 'widgets_init', 'barbecue_cafeteria_widgets_init' ); function barbecue_cafeteria_remove_customize_register() { global $wp_customize; $wp_customize->remove_section( 'restaurant_zone_color_option' ); $wp_customize->remove_section( 'restaurant_zone_menu_items_section' ); } add_action( 'customize_register', 'barbecue_cafeteria_remove_customize_register', 11 ); function barbecue_cafeteria_remove_my_action() { remove_action( 'remove_menu_page','restaurant-zone-info' ); remove_action( 'admin_menu','demo_importer_admin_page' ); remove_action( 'admin_menu','restaurant_zone_demo_importer_admin_page' ); remove_action( 'admin_notices','restaurant_zone_deprecated_hook_admin_notice' ); } add_action( 'init', 'barbecue_cafeteria_remove_my_action'); add_action('admin_menu', 'remove_my_theme_page', 999); function remove_my_theme_page() { remove_submenu_page('themes.php','restaurant-zone-info'); } /** * Get CSS */ function barbecue_cafeteria_getpage_css($hook) { wp_register_script( 'admin-notice-script', get_stylesheet_directory_uri() . '/inc/admin/js/admin-notice-script.js', array( 'jquery' ) ); wp_localize_script('admin-notice-script','barbecue_cafeteria', array('admin_ajax' => admin_url('admin-ajax.php'),'wpnonce' => wp_create_nonce('barbecue_cafeteria_dismissed_notice_nonce') ) ); wp_enqueue_script('admin-notice-script'); wp_localize_script( 'admin-notice-script', 'barbecue_cafeteria_ajax_object', array( 'ajax_url' => admin_url( 'admin-ajax.php' ) ) ); if ( 'appearance_page_barbecue-cafeteria-info' != $hook ) { return; } } add_action( 'admin_enqueue_scripts', 'barbecue_cafeteria_getpage_css' ); //Admin Notice For Getstart function barbecue_cafeteria_ajax_notice_handler() { if ( isset( $_POST['type'] ) ) { $type = sanitize_text_field( wp_unslash( $_POST['type'] ) ); update_option( 'dismissed-' . $type, TRUE ); } } function barbecue_cafeteria_deprecated_hook_admin_notice() { // Check if the notice has been dismissed by the user $dismissed = get_user_meta(get_current_user_id(), 'barbecue_cafeteria_dismissable_notice', true); // Exclude the notice from being shown on the "Theme Importer" page $current_screen = get_current_screen(); if ($current_screen && $current_screen->id === 'appearance_page_theme-importer') { return; // Don't show the notice on this page } if (!$dismissed) { ?> <div class="updated notice notice-success is-dismissible notice-get-started-class" data-notice="get_started" style="background: #f7f9f9; padding: 20px 10px; display: flex;"> <div class="tm-admin-image"> <img style="width: 100%;max-width: 320px;line-height: 40px;display: inline-block;vertical-align: top;border: 2px solid #ddd;border-radius: 4px;" src="<?php echo esc_url(get_stylesheet_directory_uri()) .'/screenshot.png'; ?>" /> </div> <div class="tm-admin-content" style="padding-left: 30px; align-self: center"> <h2 style="font-weight: 600;line-height: 1.3; margin: 0px;"><?php esc_html_e('Thank You For Choosing ', 'barbecue-cafeteria'); ?><?php echo wp_get_theme(); ?><h2> <p style="color: #3c434a; font-weight: 400; margin-bottom: 30px;"><?php _e('Get Started With Theme By Clicking On Getting Started.', 'barbecue-cafeteria'); ?><p> <a class="admin-notice-btn button button-primary button-hero" href="<?php echo esc_url( admin_url( 'themes.php?page=barbecue-cafeteria-info' )); ?>"><?php esc_html_e( 'Get started', 'barbecue-cafeteria' ) ?></a> <a class="admin-notice-btn button button-primary button-hero notice-pro-btn" target="_blank" href="<?php echo esc_url( RESTAURANT_ZONE_GET_PREMIUM_PRO ); ?>"><?php esc_html_e( 'Get Premium ', 'barbecue-cafeteria' ) ?></a> <a class="admin-notice-btn button button-primary button-hero notice-bundle-btn" target="_blank" href="<?php echo esc_url( RESTAURANT_ZONE_BUNDLE_LINK ); ?>"><?php esc_html_e( 'Buy All Themes - 120+ Templates', 'barbecue-cafeteria' ) ?></a> <span style="padding-top: 15px; display: inline-block; padding-left: 8px;"> <span style="padding-top: 15px; display: inline-block; padding-left: 8px;"> <a class="admin-notice-btn" target="_blank" href="<?php echo esc_url( RESTAURANT_ZONE_LIVE_DEMO ); ?>"><?php esc_html_e( 'View Demo', 'barbecue-cafeteria' ) ?></a> </span> </div> </div> <?php } } add_action( 'admin_notices', 'barbecue_cafeteria_deprecated_hook_admin_notice' ); function barbecue_cafeteria_switch_theme() { delete_user_meta(get_current_user_id(), 'barbecue_cafeteria_dismissable_notice'); } add_action('after_switch_theme', 'barbecue_cafeteria_switch_theme'); function barbecue_cafeteria_dismissable_notice() { update_user_meta(get_current_user_id(), 'barbecue_cafeteria_dismissable_notice', true); die(); }