Linrakesh, we are experiencing the same thing with version 2.4.1 on our Dev site.
It’s happening on our live site!
Jonathan, I just found this issue partly using 2.3.7.
We can paginate to:
https://worldeventsandthebible.com/bible-questions/archive/resource/featured
However, if we try navigating to:
https://worldeventsandthebible.com/bible-questions/archive/resource/featured/page/2
The page 404s.
We can however navigate to
https://worldeventsandthebible.com/bible-questions/archive
and paginate to
https://worldeventsandthebible.com/bible-questions/archive/page/2
So it seems when the taxonomy is added it breaks for version 2.3.7. Hopefully this will help you with the fix. Not sure how I managed to miss that during testing as this is on our live site.
Having the same issue. Thanks!
I too am having the same issue.
The default archive page works fine: https://www.startingroup.co.uk/offers/
However, as soon as a filter is applied, the pagination breaks, causing an issue with my infinite scroll. https://www.startingroup.co.uk/offers/brand/honda/
This worked fine until the update was made this week.
I think I’ve found the cause of this issue. The pagination rewrite rule is missing a leading slash which is why the default .../page/:num won’t match.
You can patch this by editing file beautiful-taxonomy-filters/admin/class-beautiful-taxonomy-filters-rewrite-rules.php. At line 72, change $new_paged_rewrite_rule = $new_rewrite_rule . 'page/([0-9]{1,})'; to $new_paged_rewrite_rule = $new_rewrite_rule . '/page/([0-9]{1,})';.
After changing, don’t forget to flush the rewrite rules by going to the BTF settings page and clicking on “Save changes”.
Hope this helps!
@fabianlindfors for the win! Solved my issue right away. Thank you!
Hey!
Thank you for the fix Fabian!
I’ve pushed out version 2.4.2 with this fix!
Apologies for being a bit distant. I’m in the middle of a house renovation project 🙂
Thank you @fabianlindfors for the fix and thank you @jonathandejong for the great plugin.