Forums › Forums › Search & Filter Pro › Pagination Wootemplate
Tagged: pagination, product archive, woocommerce
- This topic has 44 replies, 3 voices, and was last updated 7 years, 4 months ago by Anonymous.
-
Ross Moderator(Private) July 4, 2017 at 4:09 pm #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(Private) July 4, 2017 at 6:14 pm #118705Hey 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
-
AuthorPosts