Friday, 12 August 2016

How to Resolve Order Cancellation Email to Customers Issue (If Not Sent) in Woocommerce Wordpress

Many times in woocommerce shopping websites, shop managers cannot send the order cancellation emails to their customers. Problems may be many, but despite of having all things on the right place, you cannot send the emails. In order to resolve this issue, add the following code into your theme function.php file and click save/update file. (Wordpress Admin Panel>Appearance>Editor>Theme Function.php).

 /*
 * Add customer email to Cancelled Order recipient list */

 function wc_cancelled_order_add_customer_email( $recipient, $order ){
     return $recipient . ',' . $order->billing_email; }
add_filter('woocommerce_email_recipient_cancelled_order', 'wc_cancelled_order_add_customer_email', 10, 2 );


Now, place a test order, and cancel it, and you will receive order cancellation email on your registered email id as customer.

Wednesday, 10 August 2016

How to Install Woocommerce Plugin in Wordpress Step By Step


How To Download and Install A Plugin In Wordperss ( Step By Step )


Len Formula Excel | Free Excel Learning Online


How to Hide or Unhide The Formula Bar in Excel


Countif Formula Excel - Attendance System


Wednesday, 27 July 2016

How to Install Wordpress On Locahost Easily Step By Step





How to Remove Free Pricing Tag From Woocommerce Affiliate Products

I and of course many of you often need to remove the Free Pricing Tags while working on wordpress woocommerce. Here is the solution for the requirement in the form of filters/actions. Now, I have made it very easy to do as the whole process is mentioned below step by step

(1) Login to your Wordpress website admin panel

(2) Go to appearance and click editor

(3) Find Theme Functions.php, and open it