chrispenner
Member
Posted 3 months ago #
The bug seems to be on line 244 (I'm 99% sure that's the line... I did modify a few things to suit my taste)... there's no space before "View All," so it runs into the last page number. It was just a simple matter of inserting a space between the quote and the first angle bracket in the anchor tag:
Line 244:
else $output .= '<a class="contentjumpall"
Should be:
else $output .= ' <a class="contentjumpall"
helenyhou
Member
Posted 2 months ago #
I found the same thing as well. You should change line 243 as well if you change line 244, as that controls the state of the text when it's not a link.
So:
Line 243:
if ($allpage_link) $output .= '<span class="contentjumpall"
becomes
if ($allpage_link) $output .= ' <span class="contentjumpall"
Line 244:
else $output .= '<a class="contentjumpall
becomes
else $output .= ' <a class="contentjumpall
spinfactor
Member
Posted 2 months ago #
I'm having problems getting mine to work. Can anybody help me please. I have a 2 column blog, after installing works fine, except my page 2....on page 2 the widget column will be missing and will show up below the as another page below page 2 with only the widget column showing
Can anyone help me please?
Thanks in advance