View Single Post
  #1068  
Old 10-17-2015, 11:53 PM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart - reBOOT - Responsive Template

Small fix for 2 level sidebar category menu... (reBOOT v4.7.3)

In skin/reboot/js/custom/reboot.js

Replace...
Code:
$("#sliding_alt").on('hidden.bs.collapse', function () { $.removeCookie('activeCategory'); });
With...
Code:
$("#sliding_alt").on('hidden.bs.collapse', function () { $.removeCookie('activeCategory', { path: '/' }); });
Previously it wasn't deleting the menu cookie correctly.
__________________
xcartmods.co.uk
Reply With Quote