by terrytsang | Apr 1, 2015 | WooCommerce
This is post #8 of 31 in the challenge Mastering WooCommerce
If you want to change ‘Related Products’ display at WooCommerce product page, you can paste below code to the end of your theme functions.php:
add_filter( 'woocommerce_output_related_products_args', 'custom_related_products_args' );
function custom_related_products_args( $args ) {
$args['posts_per_page'] = 3; // 3 related products
$args['columns'] = 3; // displayed in 3 columns
return $args;
}
function woo_related_products_limit() {
global $product;
$args['posts_per_page'] = 3; //set maximum 3 related products
return $args;
}
*aboce code only worked for WooCommerce 2.0 and above
Hope it helps. If you like this post, do share with others. Thank you.
by terrytsang | Jan 22, 2015 | WooCommerce
This is post #7 of 31 in the challenge Mastering WooCommerce
If you have want to change product image sizes for all WooCommerce products, you can go to WooCommerce > Settings > Products Tab, and go to “Product Image Sizes” section.
There are 3 image size options:
1. Catalog Images
2. Single Product Image
3. Product Thumbnails
(more…)
by terrytsang | Dec 22, 2014 | WooCommerce
# This is post #6 of 31 in the challenge “Mastering WooCommerce”
If you have noticed WooCommerce used large Paypal icon at the Payment section in checkout page since previous updates, then maybe you would like to change that image or remove that.
Refer the screenshot below:

WooCommerce Default Paypal Icon
So if you would like to change this icon or remove that, do follow below methods.
(more…)
by terrytsang | Nov 6, 2014 | WooCommerce
# This is post #5 of 31 in the challenge “Mastering WooCommerce”
Today i will show you how to add payment method and order notes into completed order email for the purchase. Sometimes when the customer made the order, they would like to know which payment type chosen and the status of the order.
(more…)
by terrytsang | Oct 29, 2014 | WooCommerce
# This is post #4 of 31 in the challenge “Mastering WooCommerce”
This snippet code show you how to display total product sold quantity under product title at WooCommerce product page.
Currently your customers have no idea how many quantity or downloads have been ordered from your WooCommerce site. So in order to apply this change, you can add below code into your theme functions.php.
(more…)
by terrytsang | Oct 22, 2014 | WooCommerce
# This is post #3 of 31 in the challenge “Mastering WooCommerce”
Sometimes if you need to add a custom order status such as “Pre Order” for some of the customer order, you need to update that and let your customer to know this is a pre order where no action will be taken until stock arrive.
(more…)