esc_html__( 'Main menu', 'arcade-games' ), )); add_theme_support( 'responsive-embeds' ); add_theme_support( 'woocommerce' ); add_theme_support( 'align-wide' ); add_theme_support('title-tag'); add_theme_support('automatic-feed-links'); add_theme_support( 'wp-block-styles' ); add_theme_support('post-thumbnails'); add_theme_support( 'custom-background', array( 'default-color' => 'f3f3f3' )); add_theme_support( 'custom-logo', array( 'height' => 70, 'width' => 70, 'flex-height' => true, 'flex-width' => true, ) ); add_theme_support( 'custom-header', array( 'header-text' => false, 'width' => 1920, 'height' => 100, 'flex-height' => true, 'flex-width' => true, )); add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); add_theme_support( 'post-formats', array('image','video','gallery','audio',) ); add_editor_style( array( '/css/editor-style.css' ) ); add_action( 'wp_ajax_ive-check-plugin-exists', 'check_plugin_exists' ); add_action( 'wp_ajax_ive_install_and_activate_plugin', 'mep_install_and_activate_plugin' ); } add_action( 'after_setup_theme', 'arcade_games_after_setup_theme', 999 ); } function mep_install_and_activate_plugin() { $post_plugin_details = $_POST['plugin_details']; $plugin_text_domain = $post_plugin_details['plugin_text_domain']; $plugin_main_file = $post_plugin_details['plugin_main_file']; $plugin_url = $post_plugin_details['plugin_url']; $plugin = array( 'text_domain' => $plugin_text_domain, 'path' => $plugin_url, 'install' => $plugin_text_domain . '/' . $plugin_main_file ); wp_cache_flush(); $plugin_path = plugin_basename( trim( $plugin['install'] ) ); $activate_plugin = activate_plugin( $plugin_path ); if($activate_plugin) { echo $activate_plugin; } else { echo $activate_plugin; } $msg = 'installed'; $response = array( 'status' => true, 'msg' => $msg ); wp_send_json( $response ); exit; } function check_plugin_exists() { $plugin_text_domain = $_POST['plugin_text_domain']; $main_plugin_file = $_POST['main_plugin_file']; $plugin_path = $plugin_text_domain . '/' . $main_plugin_file; $get_plugins = get_plugins(); $is_plugin_installed = false; $activation_status = false; if ( isset( $get_plugins[$plugin_path] ) ) { $is_plugin_installed = true; $activation_status = is_plugin_active( $plugin_path ); } wp_send_json_success( array( 'install_status' => $is_plugin_installed, 'active_status' => $activation_status, 'plugin_path' => $plugin_path, 'plugin_slug' => $plugin_text_domain ) ); } function arcade_games_template_setup() { require get_template_directory() .'/core/includes/theme-breadcrumb.php'; require get_template_directory() .'/core/includes/tgm.php'; require get_template_directory() . '/core/includes/customizer.php'; require get_template_directory() .'/core/includes/main.php'; load_template( trailingslashit( get_template_directory() ) . '/core/includes/class-upgrade-pro.php' ); } add_action('after_setup_theme', 'arcade_games_template_setup'); /*-----------------------------------------------------------------------------------*/ /* Enqueue theme logo style */ /*-----------------------------------------------------------------------------------*/ function arcade_games_logo_resizer() { $arcade_games_theme_logo_size_css = ''; $arcade_games_logo_resizer = get_theme_mod('arcade_games_logo_resizer'); $arcade_games_theme_logo_size_css = ' .custom-logo{ height: '.esc_attr($arcade_games_logo_resizer).'px !important; width: '.esc_attr($arcade_games_logo_resizer).'px !important; } '; wp_add_inline_style( 'arcade-games-style',$arcade_games_theme_logo_size_css ); } add_action( 'wp_enqueue_scripts', 'arcade_games_logo_resizer' ); /*-----------------------------------------------------------------------------------*/ /* Get post comments */ /*-----------------------------------------------------------------------------------*/ if (!function_exists('arcade_games_comment')) : /** * Template for comments and pingbacks. * * Used as a callback by wp_list_comments() for displaying the comments. */ function arcade_games_comment($comment, $arcade_games_args, $depth){ if ('pingback' == $comment->comment_type || 'trackback' == $comment->comment_type) : ?>
  • >
    ', ''); ?>
  • >
    %s', get_comment_author_link() ); ?>
    ', '' ); ?>
    comment_approved) : ?>

    'div-comment', 'depth' => $depth, 'max_depth' => $arcade_games_args['max_depth'], 'before' => '
    ', 'after' => '
    ' ) ) ); ?>
    esc_html__('Sidebar','arcade-games'), 'id' => 'arcade-games-sidebar', 'description' => esc_html__('This sidebar will be shown next to the content.', 'arcade-games'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Sidebar 2','arcade-games'), 'id' => 'arcade-games-sidebar-2', 'description' => esc_html__('This sidebar will be shown next to the content.', 'arcade-games'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Sidebar 3','arcade-games'), 'id' => 'arcade-games-sidebar-3', 'description' => esc_html__('This sidebar will be shown next to the content.', 'arcade-games'), 'before_widget' => '', 'before_title' => '

    ', 'after_title' => '

    ' )); register_sidebar(array( 'name' => esc_html__('Footer sidebar','arcade-games'), 'id' => 'arcade-games-footer-sidebar', 'description' => esc_html__('This sidebar will be shown next at the bottom of your content.', 'arcade-games'), 'before_widget' => '
    ', 'after_widget' => '
    ', 'before_title' => '

    ', 'after_title' => '

    ' )); } add_action( 'widgets_init', 'arcade_games_widgets_init' ); } function arcade_games_get_categories_select() { $arcade_games_teh_cats = get_categories(); $results; $arcade_games_count = count($arcade_games_teh_cats); for ($i=0; $i < $arcade_games_count; $i++) { if (isset($arcade_games_teh_cats[$i])) $results[$arcade_games_teh_cats[$i]->slug] = $arcade_games_teh_cats[$i]->name; else $arcade_games_count++; } return $results; } function arcade_games_sanitize_select( $input, $setting ) { // Ensure input is a slug $input = sanitize_key( $input ); // Get list of choices from the control // associated with the setting $choices = $setting->manager->get_control( $setting->id )->choices; // If the input is a valid key, return it; // otherwise, return the default return ( array_key_exists( $input, $choices ) ? $input : $setting->default ); } // Change number or products per row to 3 add_filter('loop_shop_columns', 'arcade_games_loop_columns'); if (!function_exists('arcade_games_loop_columns')) { function arcade_games_loop_columns() { $arcade_games_columns = get_theme_mod( 'arcade_games_per_columns', 3 ); return $arcade_games_columns; } } //Change number of products that are displayed per page (shop page) add_filter( 'loop_shop_per_page', 'arcade_games_per_page', 20 ); function arcade_games_per_page( $arcade_games_cols ) { $arcade_games_cols = get_theme_mod( 'arcade_games_product_per_page', 9 ); return $arcade_games_cols; } // Add filter to modify the number of related products add_filter( 'woocommerce_output_related_products_args', 'arcade_games_products_args' ); function arcade_games_products_args( $args ) { $args['posts_per_page'] = get_theme_mod( 'custom_related_products_number', 6 ); $args['columns'] = get_theme_mod( 'custom_related_products_number_per_row', 3 ); return $args; } /*-----------------------------------------------------------------------------------*/ /* Enqueue Global color style */ /*-----------------------------------------------------------------------------------*/ function arcade_games_global_color() { $arcade_games_theme_color_css = ''; $arcade_games_global_color = get_theme_mod('arcade_games_global_color'); $arcade_games_global_color_2 = get_theme_mod('arcade_games_global_color_2'); $arcade_games_copyright_bg = get_theme_mod('arcade_games_copyright_bg'); $arcade_games_theme_color_css = ' .wp-block-button__link,.cart-customlocation i,.header-search .open-search-form i,#main-menu ul.children li a:hover, #main-menu ul.sub-menu li a:hover,p.slider-button a,.slider button.owl-prev i:hover, .slider button.owl-next i:hover,#hot_products .button2,#hot_products .button2::before,#hot_products .button2::after,#hot_products .icon .button1 a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart,.pagination .nav-links a:hover,.pagination .nav-links a:focus,.pagination .nav-links span.current,.arcade-games-pagination span.current,.arcade-games-pagination span.current:hover,.arcade-games-pagination span.current:focus,.arcade-games-pagination a span:hover,.arcade-games-pagination a span:focus,.woocommerce nav.woocommerce-pagination ul li span.current,.comment-respond input#submit ,.comment-reply a,.sidebar-area h4.title, .sidebar-area h1.wp-block-heading,.sidebar-area h2.wp-block-heading,.sidebar-area h3.wp-block-heading,.sidebar-area h4.wp-block-heading,.sidebar-area h5.wp-block-heading,.sidebar-area h6.wp-block-heading,.sidebar-area .wp-block-search__label,.sidebar-area .wp-block-search__button ,.sidebar-area .tagcloud a, p.wp-block-tag-cloud a,.searchform input[type=submit],.scroll-up a,nav.woocommerce-MyAccount-navigation ul li,.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt,.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,.woocommerce a.added_to_cart,.wp-block-woocommerce-cart .wc-block-cart__submit-button, .wc-block-components-checkout-place-order-button, .wc-block-components-totals-coupon__button,.wp-block-woocommerce-cart .wc-block-components-product-badge,.triangle35b:nth-child(1),.triangle35b:nth-child(3){ background: '.esc_attr($arcade_games_global_color).'; } @media screen and (min-width: 320px) and (max-width: 767px) { .menu-toggle, .dropdown-toggle,button.close-menu { background: '.esc_attr($arcade_games_global_color).'; } } .searchform input[type=submit]:hover,.searchform input[type=submit]:focus{ background-color: '.esc_attr($arcade_games_global_color).'; } a:hover,a:focus,#main-menu a:hover,#main-menu ul li a:hover,#main-menu li:hover > a,#main-menu a:focus,#main-menu ul li a:focus,#main-menu li.focus > a,#main-menu li:focus > a,#main-menu ul li.current-menu-item > a,#main-menu ul li.current_page_item > a,#main-menu ul li.current-menu-parent > a,#main-menu ul li.current_page_ancestor > a,#main-menu ul li.current-menu-ancestor > a,.post-meta i,#hot_products h4 a:hover,#hot_products h5.price,#hot_products a.added_to_cart.wc-forward,.bread_crumb a:hover,.bread_crumb span,.woocommerce ul.products li.product .price,.woocommerce div.product p.price, .woocommerce div.product span.price{ color: '.esc_attr($arcade_games_global_color).'; } #main-menu ul li.current-menu-item > a, #main-menu ul li.current_page_item > a,.header{ border-color: '.esc_attr($arcade_games_global_color).'; } nav.woocommerce-MyAccount-navigation ul li:hover,.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover,.woocommerce #respond input#submit:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,.woocommerce a.added_to_cart:hover,.woocommerce ul.products li.product .onsale, .woocommerce span.onsale,#main-menu ul.children ,#main-menu ul.sub-menu,#hot_products figure,.comment-respond input#submit:hover,.sidebar-area .tagcloud a:hover,.scroll-up a:hover{ background: '.esc_attr($arcade_games_global_color_2).'; } { background-color: '.esc_attr($arcade_games_global_color_2).' !important; } h1,h2,h3,h4,h5,h6,pre,.blog_box h3,#hot_products button.tablinks{ color: '.esc_attr($arcade_games_global_color_2).'; } .sidebar-area h4.title, .sidebar-area h1.wp-block-heading, .sidebar-area h2.wp-block-heading, .sidebar-area h3.wp-block-heading, .sidebar-area h4.wp-block-heading, .sidebar-area h5.wp-block-heading, .sidebar-area h6.wp-block-heading, .sidebar-area .wp-block-search__label,.sidebar-area select,.sidebar-area textarea, #comments textarea,.sidebar-area input[type="text"], #comments input[type="text"],.sidebar-area input[type="password"],.sidebar-area input[type="datetime"],.sidebar-area input[type="datetime-local"],.sidebar-area input[type="date"],.sidebar-area input[type="month"],.sidebar-area input[type="time"],.sidebar-area input[type="week"],.sidebar-area input[type="number"],.sidebar-area input[type="email"],.sidebar-area input[type="url"],.sidebar-area input[type="search"],.sidebar-area input[type="tel"],.sidebar-area input[type="color"],.sidebar-area .uneditable-input,#comments input[type="email"],#comments input[type="url"]{ border-color: '.esc_attr($arcade_games_global_color_2).'; } .copyright { background: '.esc_attr($arcade_games_copyright_bg).'; } '; wp_add_inline_style( 'arcade-games-style',$arcade_games_theme_color_css ); wp_add_inline_style( 'arcade-games-woocommerce-css',$arcade_games_theme_color_css ); } add_action( 'wp_enqueue_scripts', 'arcade_games_global_color' ); //add animation class if ( class_exists( 'WooCommerce' ) ) { add_filter('post_class', function($arcade_games, $class, $product_id) { if( is_shop() || is_product_category() ){ $arcade_games = array_merge(['wow','zoomIn'], $arcade_games); } return $arcade_games; },10,3); } add_action( 'customize_register', 'arcade_games_remove_setting', 20 ); function arcade_games_remove_setting( $wp_customize ) { // Check if the setting or control exists before removing if ( $wp_customize->get_setting( 'header_textcolor' ) ) { $wp_customize->remove_setting( 'header_textcolor' ); } if ( $wp_customize->get_control( 'header_textcolor' ) ) { $wp_customize->remove_control( 'header_textcolor' ); } } // edit link option if (!function_exists('arcade_games_edit_link')) : function arcade_games_edit_link($view = 'default') { global $post; edit_post_link( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __('Edit %s', 'arcade-games'), array( 'span' => array( 'class' => array(), ), ) ), get_the_title() ), '', '' ); } endif; add_filter( 'woocommerce_prevent_automatic_wizard_redirect', '__return_true' ); function arcade_games_get_page_id_by_title($arcade_games_pagename){ $args = array( 'post_type' => 'page', 'posts_per_page' => 1, 'post_status' => 'publish', 'title' => $arcade_games_pagename ); $query = new WP_Query( $args ); $page_id = '1'; if (isset($query->post->ID)) { $page_id = $query->post->ID; } return $page_id; }