Topic: Fixed small bug regarding the tabbed sidebar on home page
A couple of weeks ago, I posted an inquiry related to a problem I was having with the tabbed sidebar widget in Arras Theme version 1.4.3.1. Specifically, when we clicked OFF the checkbox that said "Display in homepage", the tabbed sidebar would still show up on the home page.
It turns out that there was a small coding error in the "widgets.php" file. Specifically, line 25 reads:
if ($instance['display_home'] && !is_home()) return;when it should read:
if (!$instance['display_home'] && is_home()) return;Just an FYI
Last edited by furytrader (2010-07-30 07:12:38)