01606 353550

Sales & Service Support

00

Cart

HomeEveque ShopMy account

My account

Login

Register

A link to set a new password will be sent to your email address.


If selected, your account will be created as a PO account and put on hold until an administrator approves it. Purchase order accounts are only available to schools, approved trade and credit account customers.

Your personal data will be used to support your experience throughout this website, to manage access to your account, 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; }