Below is
the snippet that you can use to display Top Seller
Products:
<%
dim desktopstring
NavigateTopSeller x,"no",desktopstring,mobilestring
htmlwrite desktopstring
%>
Note:
x = number of Top Seller Products that will be displayed (e.g. a value of 2 means 2 top seller products will be displayed).
For example, if you wish to display two top seller products at the top of the “Welcome to my Online Store” text, then please follow the steps below:
1. Open the “shoppage_header.htm” file located in the “templates\default” folder.
2. Insert this snippet at the very bottom line of the file:
<%
dim desktopstring
NavigateTopSeller 2,"no",desktopstring,mobilestring
htmlwrite desktopstring
%>
3. Save the file and upload to your site.
Note: The insertion of the snippet at the bottom line of the file as stated above is just an example. You can insert that snippet anywhere in your site. The possible template could be placed in “shoppage_header.htm” or “shoppage_trailer.htm.”