/**
* Classic Ecommerce functions and definitions
*
* @package Classic Ecommerce
*/
/**
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! function_exists( 'classic_ecommerce_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 post thumbnails.
*/
function classic_ecommerce_setup() {
global $content_width;
if ( ! isset( $content_width ) )
$content_width = 680;
add_theme_support( 'responsive-embeds' );
add_theme_support( 'automatic-feed-links' );
add_theme_support( 'wp-block-styles');
add_theme_support( 'align-wide' );
add_theme_support( 'woocommerce' );
add_theme_support( 'post-thumbnails' );
add_theme_support( 'title-tag' );
add_theme_support( 'custom-header', array(
'default-text-color' => false,
'header-text' => false,
) );
add_theme_support( 'custom-logo', array(
'height' => 100,
'width' => 100,
'flex-height' => true,
) );
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'classic-ecommerce' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'ffffff'
) );
add_theme_support( 'html5', array(
'search-form',
'comment-form',
'comment-list',
'gallery',
'caption',
) );
add_editor_style( 'editor-style.css' );
}
endif; // classic_ecommerce_setup
add_action( 'after_setup_theme', 'classic_ecommerce_setup' );
function classic_ecommerce_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'classic-ecommerce' ),
'description' => __( 'Appears on blog page sidebar', 'classic-ecommerce' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 1', 'classic-ecommerce' ),
'description' => __( 'Appears on footer', 'classic-ecommerce' ),
'id' => 'footer-1',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 2', 'classic-ecommerce' ),
'description' => __( 'Appears on footer', 'classic-ecommerce' ),
'id' => 'footer-2',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 3', 'classic-ecommerce' ),
'description' => __( 'Appears on footer', 'classic-ecommerce' ),
'id' => 'footer-3',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Footer Widget 4', 'classic-ecommerce' ),
'description' => __( 'Appears on footer', 'classic-ecommerce' ),
'id' => 'footer-4',
'before_widget' => '',
'before_title' => '',
'after_title' => '
',
) );
}
add_action( 'widgets_init', 'classic_ecommerce_widgets_init' );
function classic_ecommerce_scripts() {
wp_enqueue_style( 'bootstrap-css', esc_url(get_template_directory_uri())."/css/bootstrap.css" );
wp_enqueue_style( 'classic-ecommerce-style', get_stylesheet_uri() );
wp_style_add_data('classic-ecommerce-style', 'rtl', 'replace');
wp_enqueue_style( 'owl.carousel-css', esc_url(get_template_directory_uri())."/css/owl.carousel.css" );
wp_enqueue_style( 'classic-ecommerce-responsive', esc_url(get_template_directory_uri())."/css/responsive.css" );
wp_enqueue_style( 'classic-ecommerce-default', esc_url(get_template_directory_uri())."/css/default.css" );
wp_enqueue_script( 'bootstrap-js', esc_url(get_template_directory_uri()). '/js/bootstrap.js', array('jquery') );
wp_enqueue_script( 'owl.carousel-js', esc_url(get_template_directory_uri()). '/js/owl.carousel.js', array('jquery') );
wp_enqueue_script( 'classic-ecommerce-theme', esc_url(get_template_directory_uri()) . '/js/theme.js' );
wp_enqueue_script( 'jquery.superfish', esc_url(get_template_directory_uri()) . '/js/jquery.superfish.js' );
wp_enqueue_style( 'font-awesome-css', esc_url(get_template_directory_uri())."/css/fontawesome-all.css" );
if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) {
wp_enqueue_script( 'comment-reply' );
}
require get_parent_theme_file_path( '/inc/color-scheme/custom-color-control.php' );
wp_add_inline_style( 'classic-ecommerce-style',$classic_ecommerce_color_scheme_css );
$headings_font = esc_html(get_theme_mod('classic_ecommerce_headings_fonts'));
$body_font = esc_html(get_theme_mod('classic_ecommerce_body_fonts'));
if( $headings_font ) {
wp_enqueue_style( 'classic-ecommerce-headings-fonts', '//fonts.googleapis.com/css?family='. $headings_font );
} else {
wp_enqueue_style( 'classic-ecommerce-oswald', '//fonts.googleapis.com/css?family=Oswald:200,300,400,500,600,700');
}
if( $body_font ) {
wp_enqueue_style( 'classic-ecommerce-montserrat', '//fonts.googleapis.com/css?family='. $body_font );
} else {
wp_enqueue_style( 'classic-ecommerce-source-body', '//fonts.googleapis.com/css2?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
}
}
add_action( 'wp_enqueue_scripts', 'classic_ecommerce_scripts' );
// Footer Link
define('CLASSIC_ECOMMERCE_FOOTER_LINK',__('https://www.theclassictemplates.com/themes/free-wordpress-ecommerce-template/','classic-ecommerce'));
/**
* Implement the Custom Header feature.
*/
require get_template_directory() . '/inc/custom-header.php';
/**
* Custom template tags for this theme.
*/
require get_template_directory() . '/inc/template-tags.php';
/**
* Custom functions that act independently of the theme templates.
*/
require get_template_directory() . '/inc/extras.php';
/**
* Customizer additions.
*/
require get_template_directory() . '/inc/customizer.php';
/**
* Load Jetpack compatibility file.
*/
require get_template_directory() . '/inc/jetpack.php';
/**
* Google Fonts
*/
require get_template_directory() . '/inc/gfonts.php';
/**
* Theme Info Page.
*/
// require get_template_directory() . '/inc/addon.php';
/**
* PRO Button Link
*/
load_template( trailingslashit( get_template_directory() ) . 'inc/button-link/class-button-link.php' );
if ( ! function_exists( 'classic_ecommerce_the_custom_logo' ) ) :
/**
* Displays the optional custom logo.
*
* Does nothing if the custom logo is not available.
*
*/
function classic_ecommerce_the_custom_logo() {
if ( function_exists( 'the_custom_logo' ) ) {
the_custom_logo();
}
}
endif;
$woocommerce_sidebar = get_theme_mod( 'classic_ecommerce_woocommerce_sidebar_product' );
if ( 'false' == $woocommerce_sidebar ) {
$woo_product_column = 'col-lg-12 col-md-12';
} else {
$woo_product_column = 'col-lg-9 col-md-9';
}
$woocommerce_shop_sidebar = get_theme_mod( 'classic_ecommerce_woocommerce_sidebar_shop' );
if ( 'false' == $woocommerce_shop_sidebar ) {
$woo_shop_column = 'col-lg-12 col-md-12';
} else {
$woo_shop_column = 'col-lg-9 col-md-9';
}
NMC
Skip to content