Learn free digital marketing, Web Development and other technical courses online including seo, affiliate marketing, ppc, webmaster tools, google analytics, smo, email marketing etc.
Saturday, 20 August 2016
How to Use Dictionary in Excel | RJ Sumer Techie
Tuesday, 16 August 2016
Saturday, 13 August 2016
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).
Now, place a test order, and cancel it, and you will receive order cancellation email on your registered email id as customer.
/*
* Add customer email to Cancelled Order recipient list */
function wc_cancelled_order_add_customer_email( $recipient, $order ){
return $recipient . ',' . $order->billing_email; }
* 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 Download and Install A Plugin In Wordperss ( Step By Step )
Wednesday, 27 July 2016
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
(1) Login to your Wordpress website admin panel
(2) Go to appearance and click editor
(3) Find Theme Functions.php, and open it
Subscribe to:
Posts (Atom)
