Forum Replies Created

Viewing 1 replies (of 1 total)
  • I installed the Theme on Worpress 3.3.1 and I had the same problem as described, so I did the changes on wpzoom-functions.php as described here:

    – quote –

    Open /functions/wpzoom-functions.php and find these lines (#328):

    Code:
    echo get_category_parents($cat, TRUE, ‘ ‘ . $delimiter . ‘ ‘);

    Replace with:

    Code:
    if ($cat) {
    echo get_category_parents($cat, TRUE, ‘ ‘ . $delimiter . ‘ ‘);
    }

    Then I had the problem of no images displayed, so I downloaded the latest timthumb version from https://timthumb.googlecode.com/svn/trunk/

    I replaced the one at /wp-content/themes/academica/scripts/timthumb.php with the new code and after that…. It Worked…. ??

    I hope this helps….

Viewing 1 replies (of 1 total)