Ecommerce stores are always looking for new customers. But successful ones have a certain trait in common. Other than looking for new customers, they also focus on their existing customers. How can you sell more to your existing customers? Two old-age techniques are upselling and cross-selling. Marketing experts say that the probability of selling a […]
Posted on by Zohaib— Leave a comment
Migrating a website involves moving it from one host or server to another. Sometimes this will be from the localhost on your computer to a live server. Other times this will be from a subdomain to the main domain on the same server. Often you will want to move your entire website from one host […]
Posted on by Zohaib— Leave a comment
Running an E-commerce store is an art. Many people buy online because of convenience but convincing your store’s visitors to purchase from you and not from your competitors can be a daunting task. There are several tricks and techniques you can use to increase visitor conversion. In the last article, we looked at how you […]
Posted on by Zohaib— Leave a comment
Have you heard of the new app that will boost your E-commerce sales by at least 4 times? You are very sure that it will help you achieve your goal of increasing sales, but it’s just too damn expensive. So are you holding off buying it for now? Did you just receive the email that […]
Posted on by Tom Anbinder— 22 Comments
Sometimes you need to hide a product or make it non-purchasable depending on the visitor’s user role, for example, make all products non-purchasable for not logged users, i.e. “guests”. You can use a plugin for that or add a PHP snippet to your (child) theme’s functions.php file. There is a number of ways we can […]
Posted on by Tom Anbinder— Leave a comment
Final Product Price Use this snippet, if you need to retrieve WooCommerce product’s final price by product’s (i.e. post’s) ID. For variable products, the snippet will return the lowest variation price. The returned price will be “raw”, i.e. not formatted, without currency symbol, etc. You can use the wc_price() function to format the final price. […]