Synopsis
Store admins may want to add a button to their product pages to allow customers to easily bookmark products they're interested in.
Procedure
1 - Check the 'Display Format XML Package' attribute for your products to find the name of the XML package you need to edit.
2 - Find the section of the XML package that begins with:
<xsl:template match="Product">
3 - Add the code below, which will open the browser's 'Add to Favorites' dialog.
<div>
<input id="btnBookmark" type="button" value="Add To Favorites" onclick="window.external.AddFavorite(location.href, document.title);"></input>
</div>