01606 353550

Sales & Service Support

£47.341

Cart

Checkout

Billing details

Your order

Product Subtotal
8.5m Standing Triple Jump Bag  × 1 £47.34
Subtotal £47.34
Shipping Enter your address to view shipping options.
VAT £0.00
Total £47.34

  • Pay securely using Elavon Payments.

Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our privacy policy.

/** * Default catalog sorting: Price (high to low) on shop & product category pages. */ add_filter( 'woocommerce_default_catalog_orderby', 'lam_default_orderby_price_desc' ); function lam_default_orderby_price_desc( $sort_by ) { // Don’t interfere with admin screens if ( is_admin() ) { return $sort_by; } // For main shop page and any product tax archive (categories, tags, etc.) if ( is_shop() || is_product_taxonomy() ) { return 'price-desc'; // WooCommerce key for "Sort by price: high to low" } return $sort_by; }