Blog Archives

How to Remove Reviews Tab in WooCommerce Product Page

Via:MyTutorialGuru.com

In one of our recent online shopping project, client request us to disable the reviews tab from the product details page. You might also want the same result, that’s why you landed on this page. Here is the solution. Just add the following code in your theme’s functions.php file and that’s all.

add_filter( ‘woocommerce_product_tabs’, ‘wcs_woo_remove_reviews_tab’, 98 );
function wcs_woo_remove_reviews_tab($tabs)
unset($tabs[‘reviews’]);
return $tabs;

Code Snippet To Remove Additional Information Tab in WooCommerce

Via:MyTutorialGuru.com

In WooCommerce you can see all the information added as attributes in Additional information tab in single product page. But for some reason in one of our recent development process for one of our client, we wanted to remove this tab completely and we came accross the following solution. You just nee to add the following code in your theme’s functions.php file

add_filter( ‘woocommerce_product_tabs’, ‘woo_remove_product_tabs’, 98 );

function woo_remove_product_tabs( $tabs )

 

Learn How To Set Up WooCommerce Coupons

Via:MyTutorialGuru.com

The WooCommerce Coupons is a great way to give your customers discounts on products and/or services. In this tutorial I will show you wow to create a coupon and demonstrate the flexibility of expiration dates and usage per coupon.

Coupons are a great way to thank existing customers and to acquire new customers. It also allows you to create custom codes that you can easily share online, in newsletters, or personal emails to clients as a thank you.

To add a coupon go to WooCommerce > Coupons

Coupon Date General

1. This is the code that you will be sharing with your customers.

2. Details of your code. This doesn’t appear anywhere but is more for your own records if you want to apply any details here.

3. You have four options for discounts

4. Coupon amount – either the dollar amount of percentage. Do not add any symbols in here.

5. Allow free shipping – note that the free shipping method must be enabled to use this.

6. Apply before tax – will discount the item based on the discounted amount

7. Coupon expiry date – set this for any future date, best to do so you don’t forget it. But do let you customers know that date.

coupon date general

Coupon Data Usage Restriction

1. Minimum spend – you may choose to have a minimum amount that customers add to cart before they can use the coupon

2. Maximum spend – also this is good for large discounts. You may want to limit up to a certain amount.

3. Individual use – restricts the customer to only being able to use this one coupon. Especially good on cart discounts.

4. Exclude sale items – let’s you exclude any products or services you have on sale. Make note with the coupon to your customers that it cannot be applied to sales items so they aren’t surprised or confused.

5. Products – you can choose any product you have created here to allow the discount for.

6. Exclude products – exclude any specific items from the discount. This is good if you have created a cart discount but have some disclaimers on just a few items.

7. Product categories – same as products except you can use a category. You may have created a category just for these instances.

8. Exclude product categories – same as products except you can use a category. You may have created a category just for these instances.

9. Email restrictions – list of emails to check against the customer’s billing email when an order is placed.

coupon data usage restriction

Coupon Data Usage Limits

1. Usage limit per coupon – sets a restricted amount that the same coupon can be used over and over with all your customers that use it.

2. Usage limit per user – sets a restricted number of times a single user or customer can use the coupon.

coupon data usage limits

Applied Coupon

Once they enter the coupon in the field and click on apply, then this message appears and the final total reflects the discount.

coupon apply

Need more options?

If you are looking for a more dynamic use of coupons, including gift certificates, etc, there are several extensions to meet specific needs at WooThemes.
Via: bobwp.com