Posted on Leave a comment

Upselling and Cross-selling in Online Stores

Upselling Vs. Cross-sellingEcommerce 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 Leave a comment

How to Use Wish Lists for Your E-commerce Store

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 22 Comments

How to Hide Products by User Role in WooCommerce with PHP

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 Leave a comment

Get Product Price by Product ID in WooCommerce with PHP

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. […]