If you have converted your Shopify Store using our Multivendor Marketplace so you can use the feature app called “Favorite Product/Seller” to have your Customers like the seller and the products.
Not just this, the Customers will even get updates through email for the liked seller, ie. whenever the seller adds a new product, make changes to the existing product etc.
features
- Customer can like the Product or the Seller.
- Email notification to the customer when the Seller makes the changes to the Product or adds New Product.
- Customer can view the Favorite Product/Seller under “My Account” Section of the Shopify Account.
activation
To have the like symbol on the product page and the seller profile page, you need to copy and paste the following in the liquid file on the Shopify Store.
Copy the following code into product.liquid (or product-template, if exist) template to display the “favorite” button on seller products.
<div class="wk_like_btn" style="cursor:pointer; display:none; padding:5px; clear:both;"><a><i class="fa fa-heart-o" id="wk_icon" data-like="" data-total_count="" aria-hidden="true"></i></a><input type="hidden" class="customerid" value="{{ customer.id }}"><input type="hidden" class="productid" value="{{ product.id }}" data-vid=""></div>>
–>> Copy the following code into customers/account.liquid template to display the favorite product/seller button on customer account page.
<div id="wk-customer-likes" style="clear: both!important; margin:10px 0!important;"><input id="wk-customer-id" type ="hidden" value="{{ customer.id }}"></div>
–>> Copy the following code into page.mp_seller_profile.liquid template to display the “favorite” button on seller profile page.
<input type="hidden" class="customerid" id="customerid" value="{{customer.id}}">
–>> Copy following code into product.liquid template-> just next to selectCallback function .
$('.productid').attr('data-vid',variant.id)
Once you have added the code you can have the like button on the product page and the seller profile page.
Front End Display
Customer account
The Customer can see the list of Favorite Product and Favorite Seller. The Customer will login to the Shopify Store to view the list.
Once clicking on the “favorite sellers” from the “my account” page, customer can view the list like this :
Once clicking on the “favorite products” from the “my account” page, customer can view the list like this :
Once the favorite seller update/add/edit any product then the customer will receive an email notification for the same
support