01606 353550

Sales & Service Support

£351.161

Cart

Checkout

Billing details

Your order

Product Subtotal
England Athletics Endurance Kit  × 1 £351.16
Subtotal £351.16
Shipping Enter your address to view shipping options.
VAT £0.00
Total £351.16

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