-- url of the page with the problem -- :
agjewellery.uk/
-- HikaShop version -- : 4.5.0
-- Joomla version -- : 3.10.4
-- PHP version -- : 7.4.24
-- Browser(s) name and version -- : Firefox 91.4
-- Error-message(debug-mod must be tuned on) -- : 0
syntax error, unexpected '='
Yep - I've done THAT stupid thing - changing CSS without taking a backup or checking I'd not made any errors in the doing of it, although TBH I only did a copy/[paste on one file and don't think I even changed anything in the other (but might have accidentally).
Basically I was trying to get the Product Code to be displayed on the item page so after some searches here, I found this info:
For the product page, you can just remove the CSS:
.hikashop_product_code_main {
display: none;
}
from the front end css file of hikashop (you can edit it in the config under the tab display).
For the listings, the product code is actually not displayed at all. So you will have to edit the file listing_img_title of the view product via the menu Display->Views and add the code:
echo $this->row->product_code;
before or after the code:
echo $this->row->product_name;
I couldn't locate the first bit of info in that CSSfile anywhere, so only did the 2nd part which worked fine.
The only other change I'd then made didn't involve CSS but just enabling the Product Code to be displayed in the Config section.
It seemed to all be fine initially but then suddenly when I went back to view the site I discovered the error above, and even Max error reporting is giving me nothing - so I've no idea which file to look at or whether it's something else entirely.
I've just updated the site from the previous version to 4.5 but even that hasn't helped as I'd hoped.
Any ideas on what else to check as I can't see what I could have done wrong to cause this major issue.
Thanks.