To track your order please enter your Order ID in the box below and press the "Track" button. This was given to you on your receipt and in the confirmation email you should have received.

Shopping cart

0
image/svg+xml

No products in the cart.

// Horizontal Product Slider Shortcode function brawnax_product_category_slider($atts) { ob_start(); $atts = shortcode_atts(array( 'category' => '', ), $atts); $args = array( 'post_type' => 'product', 'posts_per_page' => -1, 'product_cat' => $atts['category'], ); $loop = new WP_Query($args); echo '
'; while ($loop->have_posts()) : $loop->the_post(); global $product; echo '
'; echo ''; echo woocommerce_get_product_thumbnail(); echo '

' . get_the_title() . '

'; echo '' . $product->get_price_html() . ''; echo '
'; echo '
'; endwhile; echo '
'; wp_reset_query(); return ob_get_clean(); } add_shortcode('product_category_slider', 'brawnax_product_category_slider'); document.addEventListener("click", function (e) { const btn = document.getElementById('toggle-slider-btn'); const slider = document.getElementById('brawnax-slider-wrapper'); if (!btn || !slider) return; if (e.target === btn) { slider.style.display = (slider.style.display === "none" || slider.style.display === "") ? "block" : "none"; } });