Forums Forums Search & Filter Pro Pagination Wootemplate

Viewing 5 posts - 41 through 45 (of 45 total)
  • Anonymous
    #118621

    Hey!
    Hm meeting atm so only phone, but I think one site is using the result as startpage, I think I did give you login for that in an earlier private reply.
    The site with /press URL is using custom post type only, not Woo though.

    Regards,

    Anonymous
    #118634

    Hey, back from the meeting.
    Ah ok, happy hunting. ๐Ÿ™‚

    Regards,

    Ross Moderator
    #118681

    Hey Fredrik

    Good news, I’ve managed to recreate the issue locally, so if you want to carry on working on the dev site please go ahead.

    I disabled a ton of stuff but didn’t make any changes to the site so hopefully its just a case of enabling again.

    Will update when I know more.

    Thanks

    Ross Moderator
    #118705

    Hey Fredrik

    I found the solution.

    It seems the issue we were working on (BB & S+F) didn’t quite make the release (well some of it didn’t I think).

    I’m talking with the devs there and should know more about how to proceed and if they will be making this change.

    For, if you must get it working immediately you can change the following in the Beaver Builder plugin:

    File (around line 340):
    bb-plugin/classes/class-fl-builder-loop.php

    Change this:

    echo paginate_links(array(
    	'base'	   => $base . '%_%',
    	'format'   => $format,
    	'current'  => $current_page,
    	'total'	   => $total_pages,
    	'type'	   => 'list'
    ));

    To:

    $big = 999999999; // need an unlikely integer
    echo paginate_links(array(
    	 'base'          => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
    	 'format'   => $format,
    	 'current'  => $current_page,
    	 'total'       => $total_pages,
    	 'type'        => 'list'
    ));

    ๐Ÿ™‚

    Let me know how you get on.

    Thanks

    Anonymous
    #118825

    Hey and thanks!
    I changed this on both the dev and live site and it seems to be working!
    I’ll keep an eye out for the BB update as well.

    Big thanks to both of you for helping out. ๐Ÿ™‚

    Regards,

Viewing 5 posts - 41 through 45 (of 45 total)