If you are looking to start an online store to sell physical or digital products, one of the best platforms available at your disposal is WordPress. WordPress combined with WooCommerce is the perfect combination for an ecommerce website. There are numerous advantages of using WooCommerce over other platforms. The main one is the availability of […]
Posted on by Tom Anbinder— 16 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. […]