240,
'width' => 240,
'flex-height' => true,
) );
add_image_size('bb-ecommerce-store-homepage-thumb',240,145,true);
register_nav_menus( array(
'primary' => __( 'Primary Menu', 'bb-ecommerce-store' ),
) );
add_theme_support( 'custom-background', array(
'default-color' => 'f1f1f1'
) );
/*
* 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', bb_ecommerce_store_font_url() ) );
}
endif; // bb_ecommerce_store_setup
add_action( 'after_setup_theme', 'bb_ecommerce_store_setup' );
/* Theme Widgets Setup */
function bb_ecommerce_store_widgets_init() {
register_sidebar( array(
'name' => __( 'Blog Sidebar', 'bb-ecommerce-store' ),
'description' => __( 'Appears on blog page sidebar', 'bb-ecommerce-store' ),
'id' => 'sidebar-1',
'before_widget' => '',
'before_title' => '
',
) );
register_sidebar( array(
'name' => __( 'Posts and Pages Sidebar', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'sidebar-2',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Third Column Sidebar', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'sidebar-3',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 1', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'footer-1',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 2', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'footer-2',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 3', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'footer-3',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Footer 4', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'footer-4',
'before_widget' => '',
'before_title' => '',
) );
register_sidebar( array(
'name' => __( 'Static page Sidebar', 'bb-ecommerce-store' ),
'description' => __( 'Appears on posts and pages', 'bb-ecommerce-store' ),
'id' => 'static-sidebar',
'before_widget' => '',
'before_title' => '',
) );
}
add_action( 'widgets_init', 'bb_ecommerce_store_widgets_init' );
/* Theme Font URL */
function bb_ecommerce_store_font_url(){
$font_url = '';
/* Translators: If there are any character that are
* not supported by PT Sans, translate this to off, do not
* translate into your own language.
*/
$ptsans = _x('on', 'PT Sans font:on or off','bb-ecommerce-store');
/* Translators: If there are any character that are
* not supported by Roboto, translate this to off, do not
* translate into your own language.
*/
$roboto = _x('on', 'Roboto font:on or off','bb-ecommerce-store');
/* Translators: If there are any character that are
* not supported by Roboto Condensed, translate this to off, do not
* translate into your own language.
*/
$roboto_cond = _x('on', 'Roboto Condensed font:on or off','bb-ecommerce-store');
if('off' !== $ptsans || 'off' !== $roboto || 'off' !== $roboto_cond){
$font_family = array();
if('off' !== $ptsans){
$font_family[] = 'PT Sans:300,400,600,700,800,900';
}
if('off' !== $roboto){
$font_family[] = 'Roboto:400,700';
}
if('off' !== $roboto_cond){
$font_family[] = 'Roboto Condensed:400,700';
}
$query_args = array(
'family' => urlencode(implode('|',$font_family)),
);
$font_url = add_query_arg($query_args,'//fonts.googleapis.com/css');
}
return $font_url;
}
/* Theme enqueue scripts */
function bb_ecommerce_store_scripts() {
wp_enqueue_style( 'bb-ecommerce-store-font', bb_ecommerce_store_font_url(), array() );
wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css');
wp_enqueue_style( 'bb-ecommerce-store-style', get_stylesheet_uri() );
wp_style_add_data( 'bb-ecommerce-store-style', 'rtl', 'replace' );
wp_enqueue_style( 'bb-ecommerce-store-customcss', get_template_directory_uri() . '/css/custom.css' );
wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/css/font-awesome.css' );
wp_enqueue_style( 'nivo-style', get_template_directory_uri().'/css/nivo-slider.css' );
wp_enqueue_script( 'jquery-nivo-slider', get_template_directory_uri() . '/js/jquery.nivo.slider.js', array('jquery') );
wp_enqueue_script( 'bb-ecommerce-store-customscripts', get_template_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', 'bb_ecommerce_store_scripts' );
function bb_ecommerce_store_ie_stylesheet(){
/** Load our IE-only stylesheet for all versions of IE.
*
*
* Note: It is also possible to just check and see if the $is_IE global in WordPress is set to true before
* calling the wp_enqueue_style() function. If you are trying to load a stylesheet for all browsers
* EXCEPT for IE, then you would HAVE to check the $is_IE global since WordPress doesn't have a way to
* properly handle non-IE conditional comments.
*/
wp_enqueue_style('bb-ecommerce-store-ie', get_template_directory_uri().'/css/ie.css', array('bb-ecommerce-store-ie-style'));
wp_style_add_data( 'bb-ecommerce-store-ie', 'conditional', 'IE' );
}
add_action('wp_enqueue_scripts','bb_ecommerce_store_ie_stylesheet');
define('bb_ecommerce_store_CREDIT','https://www.themeshopy.com/product/premium/ecommerce-store-wordpress-theme/','bb-ecommerce-store');
if ( ! function_exists( 'bb_ecommerce_store_credit' ) ) {
function bb_ecommerce_store_credit(){
echo "Ecommerce WordPress Theme";
}
}
/*radio button sanitization*/
function bb_ecommerce_store_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;
}
}
add_filter( 'woocommerce_add_to_cart_fragments', 'woocommerce_header_add_to_cart_fragment' );
function woocommerce_header_add_to_cart_fragment( $fragments ) {
ob_start();
?>
cart->get_cart_total(); ?>