-- HikaShop version -- : 2.6.0
-- Joomla version -- : 3.3.6
-- PHP version -- : 5.5.14
-- Browser(s) name and version -- : All browsers
Hello everybody! I want to change my filter. I want to add toggle button for hide/show filter detailed information.
Something like that:
So, I wrote some easy code for this toggle button:
$("#toggleButton").on("click", function() {
$("#detailedInformation").toggle();
if ($("#toggleButton").val() === '+') {
$("#toggleButton").val('-');
}else{
$("#toggleButton").val('+');
}})
And my question is: Where in Hikashop I should input my code? And where I can find identificator of detailed information?
Waiting for your advices.
Thanks in advance.