Feb 23, 2013 - eCommerce, Wordpress    Comments Off on WooCommerce change products per page

WooCommerce change products per page

Change number of products per row

Add to functions.php

// Change number or products per row to 3
add_filter('loop_shop_columns', 'loop_columns');
if (!function_exists('loop_columns')) {
function loop_columns() {
return 3; // 3 products per row
}
}
 Read more »
Feb 22, 2013 - General Web Development, Wordpress    Comments Off on Increase Size of import File in phpMyAdmin

Increase Size of import File in phpMyAdmin

The default settings for PHP don’t allow for large file imports via phpMyAdmin. These settings can be adjusted as follows.

In the php.ini file, change these settings:

Find:

post_max_size = 8Mupload_max_filesize = 2M
max_execution_time = 30
max_input_time = 60
memory_limit = 8M

Change to:

post_max_size = 750M
upload_max_filesize = 750M
max_execution_time = 5000
max_input_time = 5000memory_limit = 1000M

Pages:«1...78910111213...61»