WooCommerce php snippet – Best free on How to add WooCommerce “How many viewed the product”

advert

Have you ever wanted to know how many people have checked out your product? You’re in luck because in this video, we’ll show you how to add the number of people who have checked out your product on WooCommerce.

WooCommerce php snippet – how many viewed the product with php snippet is allowing customer and the admin know how many customers or visitors have clicked and checked the product. Learn how to add the feature to your ecommerce website.

see attached YouTube tutorial for more info on how to implement it.

Attached is a YouTube tutorial explaining how to add the code.

Feature we are adding to our ecommerce website:

WooCommerce who viewed the product

Use the php attached below to add the feature to your ecommerce website.

/**
  * Author: Thiarara
  * Version: 1.1 1
  * licence: Free GPL
  * Topic: How many customer checked the product.
  * Email support: contact@thiarara.co.ke
 **/


function people_viewing_product_shortcode() {

// The random number shown will be bewtween 15 and 30.
$product_views = (mt_rand(15,30));

return '❤️️' . $product_views . 'checked and Loved the product!';
}

add_shortcode('people_viewing_product', 'people_viewing_product_shortcode');

function action_woocommerce_after_add_to_cart_form(  ) {
    echo do_shortcode('[people_viewing_product]');
};

you may also like to read these: WooCommerce Bulk order status with filter list [Free Php Code]

advert:

Support us:

0
Would love your thoughts, please comment.x
()
x

Login To Access Code Snippet:

Stay UpTo Date with Latest Post And news: