Home › Forums › WoodMart support forum › Issue with number of products to display › Reply To: Issue with number of products to display
January 19, 2022 at 3:21 pm
#346427
Luke Nielsen
Keymaster
Hello,
The redirect problem can be fixed by adding this PHP code to the functions.php file in your child theme.
add_filter(
'woodmart_shop_page_link',
function( $link ) {
if ( isset( $_GET['swoof'] ) ) {
$link = add_query_arg( 'swoof', wc_clean( $_GET['swoof'] ), $link );
}
if ( isset( $_GET['product_cat'] ) ) {
$link = add_query_arg( 'product_cat', wc_clean( $_GET['product_cat'] ), $link );
}
return $link;
},
10
);
If you will have redirect issues, please don’t hesitate to reach out. We are always here to help you.
Kind Regards