Client has a minimum order value of £20 set in Business settings, Ordering, on V12.0.5 website http://www.houseofcheese.co.uk/
If you add a lower value item such as http://www.houseofcheese.co.uk/acata...70.html#SID=17 and go to basket then to checkout, the 'bounce' page that displays the message "Value of your shopping basket (£4.50) below your limit (£20.00). Please add something to your shopping basket. etc" is not picking up the css and displays as a broken page.
This broken page is looking for the css at
but it should be looking at
The basehref is https://www.houseofcheese.co.uk/acatalog/ but should be https://houseofcheese.secured-area.co.uk/acatalog/ {SD base href code is 'out of the box') but it is being ignored anyway
1. If I knew the page type of this 'bounce' page I could put a conditional round the css references and hard code the css referrals.
2. How can I get this page to look in the right place for the css? All checkout and basket pages are OK.
I tried adding the css files to the cgi-bin but got 500 server errors.
I have also tried adding 301 redirects to htaccess without success. I did try some conditional htaccess code to no avail:
Thanks for looking.
If you add a lower value item such as http://www.houseofcheese.co.uk/acata...70.html#SID=17 and go to basket then to checkout, the 'bounce' page that displays the message "Value of your shopping basket (£4.50) below your limit (£20.00). Please add something to your shopping basket. etc" is not picking up the css and displays as a broken page.
This broken page is looking for the css at
Code:
https://houseofcheese.secured-area.co.uk/cgi-bin/actinic.css
Code:
https://houseofcheese.secured-area.co.uk/acatalog/actinic.css
1. If I knew the page type of this 'bounce' page I could put a conditional round the css references and hard code the css referrals.
2. How can I get this page to look in the right place for the css? All checkout and basket pages are OK.
I tried adding the css files to the cgi-bin but got 500 server errors.
I have also tried adding 301 redirects to htaccess without success. I did try some conditional htaccess code to no avail:
Code:
RewriteCond %{SERVER_PORT} !=443 RewriteRule ^(cgi-bin/actinic.css)$ https://houseofcheese.secured-area.co.uk/acatalog/actinic.css/$1 [R=301,L]
Comment