New Template Tags for ShopSite Version 10 SP2

There are many new features in ShopSite Version 10 sp2, however most of them are within the ShopSite back office so no template changes are needed. Three of the new features, follow for Facebook/Twitter, share for Facebook/Twitter, and the new cascading ordering options will require that you add new tags to your custom templates.

Follow On Facebook/Twitter
These tags can go in all types of templates.

    [-- IF TWITTER_FOLLOW --][-- TWITTER_FOLLOW --][-- END_IF --]
    [-- IF FACEBOOK_FOLLOW --][-- FACEBOOK_FOLLOW --][-- END_IF --]

Share On Facebook/Twitter
These tags should be placed in page and product templates.

    [-- IF TWITTER_SHARE --][-- TWITTER_SHARE --][-- END_IF --]
    [-- IF FACEBOOK_SHARE --][-- FACEBOOK_SHARE --][-- END_IF --]

Inventory Tracking for Ordering Options
This feature will automatically work with the regular [-- Order_Option_Menu Column --]. However, if the merchant has configured this feature to use the cascading pull down menus for options, those menus will ONLY be displayed on the product more information pages. Because of this, you will want to add in new tags to the [-- DEFINE PRODUCT --][-- DEFINE SUBPRODUCT --] and [-- DEFINE PRODUCT_CROSS_SELL --] so that in all those locations, none of the product add to cart information will show up. Instead, a link to the more information page will be displayed. The IF/END_IF statement would look like this:

    [-- IF PRODUCT.UseMultiMenus checked --]
    link to more info
    [-- ELSE --]
    display add to cart options
    [-- END_IF --]