Your Cart
// Add space after the shop page header in Botiga theme add_action( 'woocommerce_before_shop_loop', 'nextwheel_add_space_before_products', 5 ); function nextwheel_add_space_before_products() { // Only add on the main shop page (not categories or search) if ( is_shop() ) { echo '
'; } }
0