• 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"

Viewing 2 replies - 1 through 2 (of 2 total)
  • Moderator Helen Hou-Sandi

    (@helen)

    Core Lead Developer and 4.0, 4.7, and 5.6 Release Lead

    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

    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

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: Multi-page Toolkit] Bug in “View All” spacing in “Page Numbers” Quick Jump’ is closed to new replies.