WP-e-Commerce
WP-e-Commerce copied to clipboard
Pagination not working on "Pretty URLs"
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
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 Thanks for the report! We'll review this and attempt to replicate and resolve for the upcoming 4.0 release.