Gift Cards
Showing the single result
-
Prenatal Lactation Consultation
$150.00 Buy gift card
/* to hide cart if empty*/
function x_woocommerce_navbar_menu_item( $items, $args ) {
if ( X_WOOCOMMERCE_IS_ACTIVE && x_get_option( 'x_woocommerce_header_menu_enable', '' ) == '1' ) {
if ( $args->theme_location == 'primary' && WC()->cart->cart_contents_count == 0 ) {
$items .= ' ';
}
}
return $items;
}
add_filter( 'wp_nav_menu_items', 'x_woocommerce_navbar_menu_item', 9999, 2 );