Larion476
Member
Posted 1 year ago #
When I make a page without sidebar, the page displays correctly without the side bar bu I get the following message at the bottom:
Warning: Division by zero in /home/hilair/public_html/tennis/wp-content/themes/wp-creativix/tpl_page_nosidebar.php on line 32
http://wordpress.org/extend/themes/wp-creativix/
tishfearless
Member
Posted 1 year ago #
Open tpl_page_nosidebar.php
In line 32:
<div class="wp-pagenavi"><?php wp_link_pages('before=Pages: &pagelink=<span>'%'</span>'); ?></div>
replace with:
<div class="wp-pagenavi"><?php wp_link_pages('before=Pages: &pagelink=<span>%</span>'); ?></div>
So basically you are removing the ' before and after the % between the span tags.
I'm not sure if that is the actually fix but I removed them and the page displayed properly after.
Larion476
Member
Posted 1 year ago #
Thanks, it does the trick!
mlambers
Member
Posted 1 year ago #
Thursy
Member
Posted 10 months ago #
Thank you, thank you, thank you...