'.woocommerce .woocommerce-breadcrumb a,.woocommerce .woocommerce-breadcrumb, .woocommerce-loop-product__title, .bizberg_woocommerce_shop ul.products li.product a.product_category_title,.bizberg_woocommerce_shop ul.products li.product .bizberg_product_compare a, .bizberg_woocommerce_shop ul.products li.product .bizberg_product_wishlist .yith-wcwl-add-to-wishlist a, .bizberg_woocommerce_shop .bizberg-shop-quantity button.plus, .bizberg_woocommerce_shop .bizberg-shop-quantity button.minus, .bizberg_woocommerce_shop .quantity .qty, .bizberg_woocommerce_shop .bizberg-shop-quantity input[type=number]::placeholder, .bizberg_woocommerce_shop div.product form.variations_form.cart .variations label, .woocommerce-error, .woocommerce-info, .woocommerce-message, .woocommerce div.product .woocommerce-tabs ul.tabs li a, .woocommerce div.product .woocommerce-tabs ul.tabs li a:hover, .bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page a, .bizberg_woocommerce_shop.woocommerce-wishlist table td.product-name a,input[type=text], input[type=email], input[type=password], input[type=date], input[type=url], select,input[type=text]::placeholder, input[type=email]::placeholder, input[type=password]::placeholder, input[type=date]::placeholder, input[type=url]::placeholder,input[type=text]:focus, input[type=email]:focus, input[type=password]:focus, input[type=date]:focus, input[type=url]:focus, .bizberg_woocommerce_shop.woocommerce-checkout input[type=text], .bizberg_woocommerce_shop.woocommerce-checkout input[type=email], .bizberg_woocommerce_shop.woocommerce-checkout input[type=password], .bizberg_woocommerce_shop.woocommerce-checkout input[type=tel], .bizberg_woocommerce_shop.woocommerce-checkout input[type=date], .bizberg_woocommerce_shop.woocommerce-checkout input[type=url], .bizberg_woocommerce_shop.woocommerce-checkout textarea, .bizberg_woocommerce_shop.woocommerce-checkout .select2-container--default .select2-selection--single, .bizberg_woocommerce_shop.woocommerce-checkout #payment div.payment_box, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-MyAccount-content .form-row input.input-text,.bizberg_dark_mode #reviews #comments ol.commentlist li .meta, .bizberg_dark_mode .select2-container--default .select2-selection--single .select2-selection__rendered, .bizberg_dark_mode.woocommerce-wishlist .wishlist_table .product-name h3 a, .bizberg_dark_mode.woocommerce-wishlist .wishlist_table.mobile li .item-details table.item-details-table td.label, .bizberg_dark_mode.woocommerce-wishlist .wishlist_table.mobile li table.additional-info td.label', 'property' => 'color', 'value_pattern' => '$' ); return $css; }); add_filter( 'bizberg_inline_style', function( $css ){ // Background Image and Color $body_background_image = bizberg_get_theme_mod( 'body_background_image' ); $background_color = $body_background_image['background-color']; $css .= '#yith-quick-view-modal .yith-wcqv-main{background:' . esc_attr( $background_color ) . '}'; return $css; }); endif; /** * Enqueue WooCommerce Styles & Scripts */ add_action( 'wp_enqueue_scripts', 'bizberg_woocommerce_scripts' ); function bizberg_woocommerce_scripts(){ $my_theme = wp_get_theme(); $current_version = $my_theme->get( 'Version' ); // Get theme Current Version wp_enqueue_style( 'bizberg-woocommerce-style', get_template_directory_uri() . '/assets/css/woocommerce.css' , array(), $current_version ); wp_enqueue_script( 'bizberg-woocommerce-scripts', get_template_directory_uri() . '/inc/woocommerce/woocommerce.js', array('jquery'), $current_version, true ); } /** * Register Sidebar */ add_action( 'widgets_init', 'bizberg_register_woocommerce_widgets' ); function bizberg_register_woocommerce_widgets() { register_sidebar( array( 'name' => esc_html__( 'WooCommerce Shop/Category Sidebar', 'bizberg' ), 'id' => 'woocommerce-shop-sidebar', 'description' => esc_html__( 'Add widgets here.', 'bizberg' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /** * Add support for WooCommerce */ add_action( 'after_setup_theme', 'bizberg_woocommerce_setup' ); function bizberg_woocommerce_setup() { add_theme_support( 'woocommerce' ); add_theme_support( 'wc-product-gallery-zoom' ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); } /** * Remove WooCommerce Sidebars */ remove_action( 'woocommerce_sidebar','woocommerce_get_sidebar', 10 ); /** * Remove Rating on product category page */ remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); remove_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 10 ); add_action( 'woocommerce_before_single_product_summary', 'woocommerce_show_product_sale_flash', 15 ); add_action( 'woocommerce_before_main_content', 'bizberg_add_div_wrapper_before' ); function bizberg_add_div_wrapper_before(){ $widget_size = bizberg_get_theme_mod( 'shop_page_widget_size' ); $sidebar_position = bizberg_get_theme_mod( 'shop_page_sidebar_position' ); if( is_product() ){ echo '
'; } elseif( is_product_category() || is_shop() || is_product_tag() ){ echo '
'; if( is_active_sidebar( 'woocommerce-shop-sidebar' ) ){ switch ( $widget_size ) { case 'small': echo '
'; break; case 'big': echo '
'; break; default: echo '
'; break; } } else { echo '
'; } } } add_action( 'woocommerce_after_main_content', 'bizberg_add_div_wrapper_end' , 5 ); function bizberg_add_div_wrapper_end(){ $widget_size = bizberg_get_theme_mod( 'shop_page_widget_size' ); if( is_product() ){ echo '
'; } elseif( is_product_category() || is_shop() || is_product_tag() ){ echo '
'; if( is_active_sidebar( 'woocommerce-shop-sidebar' ) ){ switch ( $widget_size ) { case 'small': echo '
'; echo ''; echo'
'; break; case 'big': echo '
'; echo ''; echo'
'; break; default: break; } } echo '
'; } } /** * Default loop columns on product archives. */ add_filter( 'loop_shop_columns', 'bizberg_woocommerce_loop_columns' ); function bizberg_woocommerce_loop_columns() { return absint( bizberg_get_theme_mod( 'shop_page_column' ) ); } add_filter('body_class', 'bizberg_woocommerce_class'); function bizberg_woocommerce_class($classes){ $classes[] = 'bizberg_woocommerce_shop'; return $classes; } /** * Removes the "shop" title on the main shop page */ add_filter( 'woocommerce_show_page_title', '__return_false' ); /** * Add prduct category on shop page */ add_action( 'woocommerce_after_shop_loop_item_title', 'bizberg_show_cat_shop_page', 5 ); function bizberg_show_cat_shop_page(){ $product_cats = wp_get_post_terms( get_the_ID(), 'product_cat' ); if ( $product_cats && ! is_wp_error ( $product_cats ) ){ $cats = array(); for ($i=0; $i < 2; $i++) { if( !empty( $product_cats[$i] ) ){ $cats[] = '' . esc_html( $product_cats[$i]->name ). ''; } } echo '
'; echo implode( ', ', array_filter($cats) ); echo '
'; } } /** * Add prduct category on shop page */ add_action( 'woocommerce_after_shop_loop_item', 'bizberg_add_content_shop_page', 15 ); function bizberg_add_content_shop_page(){ ob_start(); $post = get_post( get_the_ID() ); global $product; ?>
get_rating_count() > 0 ){ $rating_count = $product->get_rating_count(); ?>
get_average_rating() ) ); echo "(" . absint( $rating_count ) . ")"; ?>
post_content ) && !is_product() ){ $limit = bizberg_get_theme_mod( 'category_product_description' ); if( !empty( $limit ) ){ ?>

post_content, $limit ) ); ?>

'; echo wp_kses_post( bizberg_add_to_cart_url( $product ) ); echo '
'; echo '
'; if (function_exists('yith_woocompare_constructor')) { global $yith_woocompare; $product_id = !is_null($product) ? yit_get_prop($product, 'id', true) : 0; // return if product doesn't exist if (empty($product_id) || apply_filters('yith_woocompare_remove_compare_link_by_cat', false, $product_id)) return; $url = is_admin() ? "#" : $yith_woocompare->obj->add_product_url($product_id); ?>
'; ?>
%s', esc_url( $product->add_to_cart_url() ), esc_attr( $product->get_id() ), esc_attr( $product->get_sku() ), esc_attr( isset( $quantity ) ? $quantity : 1 ), $product->is_purchasable() && $product->is_in_stock() ? 'add_to_cart_button' : '', $product->is_purchasable() && $product->is_in_stock() && $product->supports( 'ajax_add_to_cart' ) ? 'ajax_add_to_cart' : '', esc_html( $product->add_to_cart_text() ) ),$product ); return $cart_url; } /** * Remove add to cart on shop page */ add_action( 'woocommerce_after_shop_loop_item', 'bizberg_remove_add_to_cart_buttons', 1 ); function bizberg_remove_add_to_cart_buttons() { remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart' ); } /** * Add Secondary Image */ add_action( 'woocommerce_before_shop_loop_item_title', 'bizbreg_add_second_image_gallery', 5 ); function bizbreg_add_second_image_gallery(){ global $product; $image_id = $product->get_gallery_image_ids(); if ( !empty( $image_id[0] ) ) { $image_attr = wp_get_attachment_image_src( $image_id[0], 'medium_large' ); if( !empty( $image_attr ) ){ echo '
'; } } } add_action( 'woocommerce_before_shop_loop_item_title', 'bizberg_woo_shop_image_wrap_start' , 4 ); function bizberg_woo_shop_image_wrap_start(){ echo '
'; } add_action( 'woocommerce_before_shop_loop_item_title', 'bizberg_woo_shop_image_wrap_end' , 11 ); function bizberg_woo_shop_image_wrap_end(){ echo '
'; } /** * Change the breadcrumb separator */ add_filter( 'woocommerce_breadcrumb_defaults', 'bizberg_change_breadcrumb_delimiter' ); function bizberg_change_breadcrumb_delimiter( $defaults ) { $defaults['delimiter'] = '   /   '; return $defaults; } /** * Remove the breadcrumbs */ add_action( 'template_redirect', 'bizberg_woo_remove_wc_breadcrumbs' ); function bizberg_woo_remove_wc_breadcrumbs() { if( ( is_shop() || is_product_category() ) && bizberg_get_theme_mod( 'woo_shop_breadcrumb_status' ) == false ){ remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); } if( is_product() ){ remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 ); } } // Plus Minus Quantity Buttons @ WooCommerce Single Product Page add_action( 'woocommerce_before_quantity_input_field', 'bizberg_display_quantity_plus' ); function bizberg_display_quantity_plus(){ echo '
'; } add_action( 'woocommerce_after_quantity_input_field', 'bizberg_display_quantity_minus' ); function bizberg_display_quantity_minus(){ echo '
'; } add_action( 'woocommerce_single_product_summary', 'bizberg_product_page_breadcrumb', 1 ); function bizberg_product_page_breadcrumb(){ echo '
'; woocommerce_breadcrumb(); echo '
'; } /** * Remove heading title from tab @WooCommerce Single Product Tabs */ add_filter( 'woocommerce_product_description_heading', '__return_null' ); /** * Remove additional information heading from tab @WooCommerce Single Product Tabs */ add_filter('woocommerce_product_additional_information_heading', 'bizberg_product_additional_information_heading'); function bizberg_product_additional_information_heading() { echo ''; } add_filter('woocommerce_gallery_thumbnail_size', 'bizberg_woocommerce_gallery_thumbnail_size'); function bizberg_woocommerce_gallery_thumbnail_size( $size ) { return 'thumbnail'; } add_filter( 'bizberg_link_color_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop .bizberg-shop-quantity button:hover, .bizberg_woocommerce_shop div.product form.cart .button, .bizberg_woocommerce_shop #review_form #respond .form-submit input, .bizberg_woocommerce_shop.woocommerce-cart table.shop_table td .button, .bizberg_woocommerce_shop.woocommerce-cart table.shop_table td .button:hover, .bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page a.checkout-button, .bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page a.checkout-button:hover, .bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page p.return-to-shop a, .bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page p.return-to-shop a:hover, .bizberg_woocommerce_shop.woocommerce-checkout #payment #place_order, .bizberg_woocommerce_shop.woocommerce-checkout #payment #place_order:hover, .bizberg_woocommerce_shop.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button, .bizberg_woocommerce_shop.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button:hover, .bizberg_woocommerce_shop.woocommerce-checkout form.woocommerce-form-login button, .bizberg_woocommerce_shop.woocommerce-checkout form.woocommerce-form-login button:hover, .bizberg_woocommerce_shop.woocommerce-lost-password button.woocommerce-Button.button, .bizberg_woocommerce_shop.woocommerce-lost-password button.woocommerce-Button.button:hover,.bizberg_woocommerce_shop.woocommerce-wishlist table td.product-add-to-cart a.button,.bizberg_woocommerce_shop.woocommerce-wishlist table td.product-add-to-cart a.button:hover,.bizberg_woocommerce_shop.woocommerce-wishlist .wishlist_table .product-name a.yith-wcqv-button:hover, .bizberg_woocommerce_shop.woocommerce-wishlist .wishlist_table .product-add-to-cart a,.bizberg_woocommerce_shop .woocommerce-form-login .woocommerce-form-login__submit,.bizberg_woocommerce_shop .woocommerce-form-login .woocommerce-form-login__submit:hover,.bizberg_woocommerce_shop .woocommerce-form-register .woocommerce-form-register__submit,.bizberg_woocommerce_shop .woocommerce-form-register .woocommerce-form-register__submit:hover,.bizberg_woocommerce_shop.woocommerce-wishlist .wishlist_table .product-add-to-cart a:hover,.bizberg_woocommerce_shop.woocommerce-account table.my_account_orders .button,.bizberg_woocommerce_shop.woocommerce-account table.my_account_orders .button:hover,.bizberg_woocommerce_shop.woocommerce-account .woocommerce-pagination a, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-pagination a:hover, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-info a, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-info a:hover,.bizberg_woocommerce_shop.woocommerce-account .woocommerce-MyAccount-content p button,.bizberg_woocommerce_shop.woocommerce-account .woocommerce-MyAccount-content p button:hover,.bizberg_woocommerce_shop.woocommerce-account form.woocommerce-EditAccountForm p button,.bizberg_woocommerce_shop .bizberg_header_mini_cart_wrapper p.woocommerce-mini-cart__buttons.buttons a,.header_sidemenu_in .woocommerce_cart_sidebar>p.buttons a,.header_sidemenu .mhead p span,.header_sidemenu .mhead p:hover', 'property' => 'background', 'value_pattern' => '$' ); $css[] = array( 'element' => '.bizberg_woocommerce_shop div.product .woocommerce-tabs ul.tabs li.active', 'property' => 'background-color', 'media_query' => '@media (max-width: 639px)' ); $css[] = array( 'element' => '.bizberg_woocommerce_shop div.product form.cart .reset_variations::before', 'property' => 'color' ); return $css; }); add_filter( 'bizberg_theme_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop .woocommerce-breadcrumb', 'property' => 'border-left-color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.woocommerce .widget_price_filter .ui-slider .ui-slider-range,.woocommerce .widget_price_filter .ui-slider .ui-slider-handle, .bizberg_woocommerce_shop form.woocommerce-product-search button, .bizberg_woocommerce_shop .woocommerce-message a, .bizberg_woocommerce_shop .woocommerce-message a:hover, .bizberg_woocommerce_shop.woocommerce-cart table.shop_table thead, .bizberg_woocommerce_shop.woocommerce-checkout table.shop_table thead, .bizberg_woocommerce_shop.woocommerce-account table.shop_table thead,.bizberg_woocommerce_shop.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a,.bizberg_woocommerce_shop #bizberg-product-search-box form.woocommerce-product-search button::before,.bizberg_woocommerce_shop .bizberg_wishlist_wrapper a span, .bizberg_woocommerce_shop .bizberg_compare_wrapper a span, .bizberg_woocommerce_shop a.cart-contents span.cart_content_count,.bizberg_woocommerce_shop .bizberg_header_mini_cart_wrapper ul.woocommerce-mini-cart::-webkit-scrollbar, .bizberg_woocommerce_shop.woocommerce-wishlist table.shop_table thead,.header_sidemenu_in .m-contentmain::-webkit-scrollbar, .bizberg_dark_mode #yith-wcwl-popup-message', 'property' => 'background-color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.bizberg_woocommerce_shop .widget.widget_product_tag_cloud a:hover, .yith-woocompare-widget a.compare:hover', 'property' => 'background-color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.woocommerce div.product p.price, .woocommerce div.product span.price, .woocommerce-message::before, .bizberg_dark_mode .comment-form-rating .stars a, .bizberg_dark_mode .star-rating span::before', 'property' => 'color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.woocommerce-message,.woocommerce-info,.bizberg_woocommerce_shop.woocommerce-checkout p.woocommerce-thankyou-order-received', 'property' => 'border-color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.woocommerce-info::before, .bizberg_woocommerce_shop.woocommerce-checkout p.woocommerce-thankyou-order-received', 'property' => 'color', 'value_pattern' => '$' ); $css[] = array( 'media_query' => '@media (max-width: 1100px)', 'element' => '.bizberg_dark_mode .header_sidemenu .mhead p', 'property' => 'background' ); $css[] = array( 'element' => '.bizberg_woocommerce_shop div.product form.cart .button::before, .bizberg_woocommerce_shop.woocommerce-cart table.shop_table td .button::before,.bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page a.checkout-button::before, .bizberg_woocommerce_shop.woocommerce-cart .detail-content.single_page p.return-to-shop a::before, .bizberg_woocommerce_shop.woocommerce-checkout #payment #place_order::before, .bizberg_woocommerce_shop.woocommerce-checkout form.checkout_coupon.woocommerce-form-coupon button::before, .bizberg_woocommerce_shop.woocommerce-checkout form.woocommerce-form-login button::before, .bizberg_woocommerce_shop.woocommerce-lost-password button.woocommerce-Button.button::before,.bizberg_woocommerce_shop.woocommerce-wishlist table td.product-add-to-cart a.button::before,.bizberg_woocommerce_shop .woocommerce-form-login .woocommerce-form-login__submit::before, .bizberg_woocommerce_shop .woocommerce-form-register .woocommerce-form-register__submit::before, .bizberg_woocommerce_shop.woocommerce-account table.my_account_orders .button::before, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-info a::before, .bizberg_woocommerce_shop.woocommerce-account .woocommerce-MyAccount-content p button::before, .bizberg_woocommerce_shop.woocommerce-account form.woocommerce-EditAccountForm p button::before, .bizberg_woocommerce_shop .bizberg_header_mini_cart_wrapper p.woocommerce-mini-cart__buttons.buttons a::before', 'property' => 'background', 'value_pattern' => '$', 'sanitize_callback' => 'bizberg_add_to_cart_border_color' ); $css[] = array( 'element' => '.bizberg_woocommerce_shop div.product .woocommerce-tabs ul.tabs li.active', 'property' => 'border-color', 'sanitize_callback' => 'bizberg_add_to_cart_border_color' ); return $css; }); add_filter( 'bizberg_sidebar_widget_link_color_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop #sidebar .widget:not(.widget_block) a, .bizberg_woocommerce_shop .widget.widget_product_categories ul li a::before', 'property' => 'color', 'value_pattern' => '$' ); return $css; }); add_filter( 'bizberg_link_color_hover_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop ul.products li.product .bizberg_product_compare a:hover,.bizberg_woocommerce_shop ul.products li.product .bizberg_product_wishlist .yith-wcwl-add-to-wishlist a:hover', 'property' => 'color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.bizberg_dark_mode.woocommerce-wishlist .wishlist_table .product-add-to-cart a,.bizberg_dark_mode.woocommerce-wishlist .wishlist_table .product-add-to-cart a:hover', 'property' => 'background', 'value_pattern' => '$ !important' ); $css[] = array( 'element' => '.bizberg_dark_mode .widget .price_slider_amount button.button', 'property' => 'background', ); return $css; }); add_filter( 'bizberg_sidebar_widget_link_color_hover_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop #sidebar .widget:not(.widget_block) a:hover, .bizberg_woocommerce_shop .widget.widget_product_categories ul li a:hover::before', 'property' => 'color', 'value_pattern' => '$' ); return $css; }); add_filter( 'bizberg_blog_listing_pagination_border_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop nav.woocommerce-pagination ul li a', 'property' => 'border-color', 'value_pattern' => '$' ); return $css; }); add_filter( 'bizberg_blog_listing_pagination_text_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop nav.woocommerce-pagination ul li a', 'property' => 'color', 'value_pattern' => '$' ); return $css; }); add_filter( 'bizberg_blog_listing_pagination_active_hover_color_output_css', function( $css ){ $css[] = array( 'element' => '.bizberg_woocommerce_shop nav.woocommerce-pagination ul li span.current, .bizberg_woocommerce_shop nav.woocommerce-pagination ul li a:focus, .bizberg_woocommerce_shop nav.woocommerce-pagination ul li a:hover', 'property' => 'background-color', 'value_pattern' => '$' ); $css[] = array( 'element' => '.bizberg_woocommerce_shop nav.woocommerce-pagination ul li span.current, .bizberg_woocommerce_shop nav.woocommerce-pagination ul li a:focus, .bizberg_woocommerce_shop nav.woocommerce-pagination ul li a:hover', 'property' => 'border-color', 'value_pattern' => '$' ); return $css; }); add_filter( 'bizberg_recommended_plugins', function( $plugins ){ $plugins[] = array( 'name' => esc_html__( 'YITH WooCommerce Compare', 'bizberg' ), 'slug' => 'yith-woocommerce-compare', 'required' => false ); $plugins[] = array( 'name' => esc_html__( 'YITH WooCommerce Quick View', 'bizberg' ), 'slug' => 'yith-woocommerce-quick-view', 'required' => false ); $plugins[] = array( 'name' => esc_html__( 'YITH WooCommerce Wishlist', 'bizberg' ), 'slug' => 'yith-woocommerce-wishlist', 'required' => false ); return $plugins; }); add_action( 'wp_footer', 'bizberg_floating_menus' ); function bizberg_floating_menus() { $status = bizberg_get_theme_mod( 'woocommerce_floating_menu_status' ); if( empty( $status ) ){ return; } $floating_menu_content = bizberg_get_theme_mod( 'floating_menu_content' ); if( empty( $floating_menu_content ) ){ return; } ?>
$value ) { switch ( $value ) { case 'cart': bizberg_get_cart_icon_floating_menu(); break; case 'wishlist': bizberg_get_wishlist_icon_floating_menu(); break; case 'compare': bizberg_get_compare_icon_floating_menu(); break; default: # code... break; } } ?>
cart->get_cart_contents_count() ); ?>

obj->products_list ) && is_array( $yith_woocompare->obj->products_list ) ? count( $yith_woocompare->obj->products_list ) : '0'; ?>