Problem with WooCommerce and some other questions
-
Hello,
If i enable the “Optimize CSS Delivery” i have problem with my code in functions.php in the
theme folder.
I add some line, to give WooCommerce the information, how many products should be shown on one page.
// Number of products to show per page
add_filter( ‘loop_shop_per_page’, function ( $cols ) {return 24;}, 20 );
// Number or products per row
add_filter(‘loop_shop_columns’, ‘loop_columns’);
if (!function_exists(‘loop_columns’))
{function loop_columns() {return 4; }} // 4 products per rowAfter activating the “Optimize CSS Delivery”, my WooCommerce show me the wrong column and lines ??
A other question:
I have installed Fastest Cache AND Autoptimize.
These two programs are supported from your plugin.
How should i make the settings in the Cache plugins?
Or does your plugin these operation for me?Best regards
- The topic ‘Problem with WooCommerce and some other questions’ is closed to new replies.