alanmj
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Incorrect Product DisplayHi
I have similar issue in my shop page
`/**
* Change number of products that are displayed per page (shop page)
*/
add_filter( ‘loop_shop_per_page’, ‘new_loop_shop_per_page’, 20 );function new_loop_shop_per_page( $cols ) {
// $cols contains the current number of products per page based on the value stored on Options –> Reading
// Return the number of products you wanna show per page.
$cols = 24;
return $cols;
}
I have used this code in my function.php First 6 pages it is showing correctly 24 products then product display is incorrect in showing next few pages
how to fix this issue ?Forum: Plugins
In reply to: [W3 Total Cache] Webp and CDN supportCan you please give me custom file upload the hook or filter?
Forum: Plugins
In reply to: [W3 Total Cache] Webp and CDN supportIs there any way or code in w3 total cache to automatically upload custom files to CDN?
Is there any way to enable toggle for woo range-slider. I mean any custom js code for range slider. If there it would be a help