In wp-content/themes/wp-creativix/tpl_page_nosidebar.php
Remove the single quotes around %
I put the OLD and NEW line of code below
PHP is treating this as a mathematical operation in the OLD scenario
OLD:<div class="wp-pagenavi"><?php wp_link_pages('before=Pages: &pagelink=<span>'%'</span>'); ?></div>
NEW:<div class="wp-pagenavi"><?php wp_link_pages('before=Pages: &pagelink=<span>%</span>'); ?></div>
the problem seems to be the % – When you remove this it works, but is the final fix?
This is doing modular division with the %
<div class=”wp-pagenavi”>
<?php wp_link_pages(‘before=Pages: &pagelink=<span>’%'</span>’); ?>
</div>
NOTE:If I run this code
<?
echo ‘before=Pages: &pagelink=<span>’%'</span>’;
exit;
?>
PHP Warning: Division by zero in xxx.php on line 2