get( 'Version' ) ); } if ( ! function_exists( 'automobile_car_shop_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 automobile_car_shop_setup() { load_theme_textdomain( 'automobile-car-shop', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); add_theme_support( 'align-wide' ); add_theme_support( 'woocommerce' ); // Add support for block styles. add_theme_support( 'wp-block-styles' ); // Enqueue editor styles. //add_editor_style( 'style.css' ); // Add support for core custom logo. add_theme_support( 'custom-logo', array( 'height' => 192, 'width' => 192, 'flex-width' => true, 'flex-height' => true, ) ); // Experimental support for adding blocks inside nav menus add_theme_support( 'block-nav-menus' ); // Add support for experimental link color control. add_theme_support( 'experimental-link-color' ); // Register nav menus. register_nav_menus( array( 'primary' => __( 'Primary Navigation', 'automobile-car-shop' ), ) ); } endif; add_action( 'after_setup_theme', 'automobile_car_shop_setup' ); if ( ! function_exists( 'automobile_car_shop_fonts_url' ) ) : /** * Register Google fonts for Automobile Car Shop * * Create your own automobile_car_shop_fonts_url() function to override in a child theme. * * @since 1.0 * * @return string Google fonts URL for the theme. */ function automobile_car_shop_fonts_url() { $fonts_url = ''; /* Translators: If there are characters in your language that are not * supported by Poppins, translate this to 'off'. Do not translate * into your own language. */ $poppins = _x( 'on', 'Poppins font: on or off', 'automobile-car-shop' ); if ( 'off' !== $poppins ) { $font_families = array(); $font_families[] = 'Archivo:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900'; $font_families[] = 'Inter:wght@100;200;300;400;500;600;700;800;900'; $query_args = array( 'family' => implode( '&family=', $font_families ), //urlencode( implode( '|', $font_families ) ), // 'subset' => urlencode( 'latin,latin-ext' ), 'display' => 'swap', ); $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css2' ); } if ( ! class_exists( 'WPTT_WebFont_Loader' ) ) { // Load Google fonts from Local. require_once get_theme_file_path( 'inc/wptt-webfont-loader.php' ); } return esc_url( wptt_get_webfont_url( $fonts_url ) ); } endif; /** * Enqueue scripts and styles. */ function automobile_car_shop_scripts() { wp_enqueue_style('automobile-car-shop-font', automobile_car_shop_fonts_url(), array()); wp_enqueue_style('automobile-car-shop-style', get_stylesheet_uri(), array() ); wp_enqueue_script( 'automobile-car-shop-jquery-wow', esc_url(get_template_directory_uri()) . '/js/wow.js', array('jquery') ); wp_enqueue_style( 'automobile-car-shop-animate-css', esc_url(get_template_directory_uri()).'/css/animate.css' ); wp_style_add_data( 'automobile-car-shop-style', 'rtl', 'replace' ); } add_action( 'wp_enqueue_scripts', 'automobile_car_shop_scripts' ); add_action( 'admin_enqueue_scripts', function( $hook ) { // if ( 'user-edit.php' == $hook ) { wp_enqueue_script( 'automobile_car_shop',get_template_directory_uri() . '/js/custom-admin.js',array('jquery'),'',true); // } } ); /** * Enqueue block editor style */ function automobile_car_shop_block_editor_styles() { wp_enqueue_style( 'automobile-car-shop-block-patterns-style-editor', get_theme_file_uri( '/css/block-editor.css' ), false, '1.0', 'all' ); wp_enqueue_style('automobile-car-shop-font', automobile_car_shop_fonts_url(), array()); } // Add block patterns require get_template_directory() . '/inc/block-patterns.php'; /** * notice */ require get_template_directory() . '/inc/core/activation-notice.php'; // TGM require get_template_directory() . '/inc/tgm/plugin-activation.php'; /** * Section Pro */ require get_template_directory() . '/inc/section-pro/customizer.php'; /** * Load core file. */ require_once get_template_directory() . '/inc/core/theme-info.php'; require_once get_template_directory() . '/inc/core/template-functions.php'; add_action( 'enqueue_block_editor_assets', 'automobile_car_shop_block_editor_styles' ); function automobile_car_shop_init_setup() { define('AUTOMOBILE_CAR_SHOP_BUY_NOW',__('https://www.vwthemes.com/products/car-dealership-wordpress-theme','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_SUPPORT',__('https://wordpress.org/support/theme/automobile-car-shop/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_REVIEW',__('https://wordpress.org/support/theme/automobile-car-shop/reviews/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_LIVE_DEMO',__('https://www.vwthemes.net/automobile-car-shop/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_PRO_DOC',__('https://preview.vwthemesdemo.com/docs/automobile-car-shop-pro/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_FREE_DOC',__('https://preview.vwthemesdemo.com/docs/free-automobile-car-shop','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_FAQ',__('https://www.vwthemes.com/faqs/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_CHILD_THEME',__('https://developer.wordpress.org/themes/advanced-topics/child-themes/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_CONTACT',__('https://www.vwthemes.com/contact/','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_THEME_BUNDLE_BUY_NOW',__('https://www.vwthemes.com/products/wp-theme-bundle','automobile-car-shop')); define('AUTOMOBILE_CAR_SHOP_THEME_BUNDLE_DOC',__('https://preview.vwthemesdemo.com/docs/theme-bundle/','automobile-car-shop')); } add_action( 'after_setup_theme', 'automobile_car_shop_init_setup' ); /* Enqueue admin-notice-script js */ add_action('admin_enqueue_scripts', function ($hook) { if ($hook !== 'appearance_page_automobile-car-shop') return; wp_enqueue_script('admin-notice-script', get_template_directory_uri() . 'inc/core/js/admin-notice-script.js', ['jquery'], null, true); wp_localize_script('admin-notice-script', 'pluginInstallerData', [ 'ajaxurl' => admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('install_plugin_nonce'), // Match this with PHP nonce check 'redirectUrl' => admin_url('themes.php?page=automobile-car-shop-info'), ]); }); add_action('wp_ajax_check_plugin_activation', function () { if (!isset($_POST['plugin']) || empty($_POST['plugin'])) { wp_send_json_error(['message' => 'Missing plugin identifier']); } include_once ABSPATH . 'wp-admin/includes/plugin.php'; // Map plugin identifiers to their main files $automobile_car_shop_plugin_map = [ 'woocommerce' => 'woocommerce/woocommerce.php', 'ibtana' => 'ibtana-visual-editor/plugin.php', ]; $automobile_car_shop_requested_plugin = sanitize_text_field($_POST['plugin']); if (!isset($automobile_car_shop_plugin_map[$automobile_car_shop_requested_plugin])) { wp_send_json_error(['message' => 'Invalid plugin']); } $automobile_car_shop_plugin_file = $automobile_car_shop_plugin_map[$automobile_car_shop_requested_plugin]; $automobile_car_shop_is_active = is_plugin_active($automobile_car_shop_plugin_file); wp_send_json_success(['active' => $automobile_car_shop_is_active]); }); add_filter( 'woocommerce_enable_setup_wizard', '__return_false' );