• Hello,

    This plugin is very useful, the only issue I found is that, when I activate the plugin the footer get chopped off, maybe a closing DIV is missing in the coding, please have a look.

    Thank you

Viewing 2 replies - 1 through 2 (of 2 total)
  • I ran into this issue as well, and after a lot of troubleshoot, i found out this plugin was the cause my footer was getting all messed up. Indeed it is a div not closing properly.

    Until the author fix this oversight, here are the instructions to modify the plugin directly and fix this.

    1- On the file wp-categories-widget.php (main file) on line 108, you will find something like this:

    $va_category_HTML .='</ul>';
     echo $va_category_HTML;
    } //-- Closing IF	
    $va_category_HTML .='</div>';

    Change this to:

    $va_category_HTML .='</ul>';
    $va_category_HTML .='</div>';
     echo $va_category_HTML;
    } //-- Closing IF

    Basically moving the closing div to inside the div above the echo.

    That will get your footer fixed.

    • This reply was modified 5 years, 11 months ago by fearlex.
    Thread Starter Shrinivas

    (@shrinitech)

    @fearlex

    Thanks for the quick fix, will try it now.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Chopping off the footer area’ is closed to new replies.