If you want to translate some string in woocommerce than you don’t need to translate the whole installation of wordpress or any other translation plugin. You just add some line of php code to achieve this. Here we will achieve this. Let’s have a look. Add following lines code at the end of your theme’s… Continue reading How to translate a string in Woocommerce
How to redirect user directly to checkout page after adding product to cart in Woocommerce
WooCommerce default option that allow for Redirect to all users to the cart after adding a product to the cart. You can find the option in the WooCommerce -> Settings -> Products -> Display area. When the option “Redirect to the cart page after successful addition” is checked. It will redirect all users to the… Continue reading How to redirect user directly to checkout page after adding product to cart in Woocommerce
How to remove billing detail for logged in users in woocommerce checkout
In Woocommerce, When customer purchase a product, woocommerce add a form to enter his billing details. It’s Woocommerce default functionality but in some case many shop owner want get money from customer and send product , that’s all, no need to make customer enter any billing address information another way many shop owner want to… Continue reading How to remove billing detail for logged in users in woocommerce checkout
Validation Of Checkout Pincode or Zipcode Field in Woocommerce
You can limit the zip code field digits to validate it properly. If in your country zip code is of minimum 4, 5, or 6 digits then you can use woocommerce checkout process function add_action code to validate it for correct zip code entry by your customers. Let’s have a look. Here is my code,… Continue reading Validation Of Checkout Pincode or Zipcode Field in Woocommerce
How to display item category in admin Orders page WooCommerce
In the WooCommerce -> Orders screen, the product category is not displayed by default; only the product name and cost, Qty, as well as the order details are displayed. I need to show the product category of product in admin Orders page when a customer make a purchase. So let’s have a look Add below… Continue reading How to display item category in admin Orders page WooCommerce
How to Add category name in WooCommerce order emails
When user has created a new order and receive email it wil show all product detail but not display product category. So how to add category name in order detail page. So, here is my solution to display category name in order emails, Add below line of code in your theme’s function.php of your active… Continue reading How to Add category name in WooCommerce order emails
How to Redirect User When Woocommerce Store is Closed/Offline
If you decide to close your shop during your absence i.e. put it offline, you shouldn’t simply shut down the server or your website is temporarily closed for maintenance or it can be offline for any design changes, updating any portion of your website, or resolving any technical problem but you don’t want to upset… Continue reading How to Redirect User When Woocommerce Store is Closed/Offline
How to notify admin when a new customer account is created
Many of clients want to notify admin when new customer create a new account in their woocommerce store. so they can tag a customer’s account based on the type of purchase they want to make but this is not built in functionality in woocommerce. So how can you do this. So here is my solutions.… Continue reading How to notify admin when a new customer account is created
Showing Products When No Products Were Found Matching Your Selection
Sometimes customer on your site search product but it can not find specific product or result will be display “No products were found matching your selection.” It may be happen by keyword they used for find product not be specific or your shop doesn’t have this product which they want. So Woocommerce display a meassge… Continue reading Showing Products When No Products Were Found Matching Your Selection
How to Delete expired coupons automatically in Woocommerce
Coupons are a great way to offer discounts and rewards to your customers, and can help promote sales across your shop but problem is that coupons have some expire time. After some specific time, coupons are expire and by default WooCommerce will not delete them. So How to Delete expired coupons automatically in Woocommerce? So… Continue reading How to Delete expired coupons automatically in Woocommerce