Wishlist pagination not working

Ticket for: Wishlist
0
Wishlist pagination not working 1
Hugh MacOwan
Dec 24, 2019 03:10 AM 3 Answers
Member Since Dec 2019
Subscribed Subscribe Not subscribe
Flag(0)

I add 12 products to the wishlist. i go to the wishlist page - it displays 10 items and pagination links but the next page does NOT load, I cannot se the next products.
Any advice please?

2 Subscribers
Wishlist pagination not working 1
Wishlist pagination not working 3
Submit Answer
Please login to submit answer.
3 Answers
Sort By:
Best Answer
0
Wishlist pagination not working 4
Hugh MacOwan
Dec 31, 2019
Flag(0)

FINALLY I have the permanent solution:

You need to paste this in your functions.php so pagination works for custom post types:

add_filter( 'redirect_canonical', 'custom_disable_redirect_canonical' );
function custom_disable_redirect_canonical( $redirect_url ) {
    if ( is_paged() && is_singular() ) $redirect_url = false; 
    return $redirect_url; 
}
Solution found here:
https://wordpress.stackexchange.com/questions/44537/why-is-page-2-not-working
Sign in to Reply
Replying as Submit
Best Answer
0
Wishlist pagination not working 4
Hugh MacOwan
Dec 24, 2019
Flag(0)

I found the problem after a LOT of investigation:

You have to set your permalinks to default setting - plain : https://yoursite/?p=123

While this is not my preferred option, at least it works for now.

Hope this helps others with this problem and I hope the author can fix this better 🙂

Wishlist pagination not working 6
Hugh MacOwan
- Dec 30, 2019 02:29 PM
Flag (0)
0

This is NOT a solution since i need the permalink structure set to postname for seo purposes.
Do you have a fix for this please?

Wishlist pagination not working 6
Hugh MacOwan
- Dec 30, 2019 02:28 PM
Flag (0)
0

This is NOT a solution since i need the permalink structure set to postname for seo purposes.
Do you have a fix for this please?

Wishlist pagination not working 8
PickPlugins
- Dec 25, 2019 06:34 PM
Flag (0)
0

Thanks for the solution, i also suggest same things for another user previously after checking the permalink. but i forget to check this issue in your case.

Sign in to Reply
Replying as Submit
Best Answer
0
Wishlist pagination not working 9
PickPlugins
Dec 24, 2019
Flag(0)

Welcome to our forum.

Can you please deactivate others plugin one by one to check if any 3rd party plugin causes the issue if you found it please let me know, also please clear browser cache and try.

Regards

Wishlist pagination not working 6
Hugh MacOwan
- Dec 24, 2019 11:46 PM
Flag (0)
0

I found the problem after a LOT of investigation:

You have to set your permalinks to default setting – plain : https://yoursite/?p=123

While this is not my preferred option, at least it works for now.

Sign in to Reply
Replying as Submit