01606 353550

Sales & Service Support

£791.802

Cart

Checkout

Billing details

Your order

Product Subtotal
Relay Batons Coloured Plastic Set of 4  × 1 £10.34
Standing Triple Jump 8.5m  × 1 £781.46
Subtotal £791.80
Shipping Enter your address to view shipping options.
VAT £0.00
Total £791.80

  • 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; }