Layered Navigation Widget
-
Fix a small bug on line 291:
replace:
if (!$found) : ob_clean(); return; else : $widget = ob_get_clean(); echo $widget; endif;
With:
if (!$found) : ob_end_clean(); return; else : $widget = ob_get_clean(); echo $widget; endif;
In other words, close the output buffer, cleaning it is not enough.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Layered Navigation Widget’ is closed to new replies.