WP-e-Commerce icon indicating copy to clipboard operation
WP-e-Commerce copied to clipboard

Pagination not working on "Pretty URLs"

Open Nodws opened this issue 9 years ago • 2 comments

Not working (shows page 1 content) /products-page/loterias/page/2/ Working fine /?wpsc_product_category=loterias&paged=2

Using latest plugin version, WP is up to date, no cache plugins

Nodws avatar Sep 20 '16 17:09 Nodws

Only workaround is to disable the redirection

add_filter( 'redirect_canonical','custom_disable_redirect_canonical' ); 
function custom_disable_redirect_canonical( $redirect_url ){
    if ( is_tax('wpsc_product_category')) 
        $redirect_url = false;
    return $redirect_url;
}

Nodws avatar Sep 20 '16 19:09 Nodws

@Nodws Thanks for the report! We'll review this and attempt to replicate and resolve for the upcoming 4.0 release.

JustinSainton avatar Nov 30 '16 06:11 JustinSainton