New Template Tags for ShopSite Version 11

There are many new features in ShopSite Version 11; most of them are within the ShopSite back office so no template changes are needed. The tags below are tags for some of the new features in version 11 as well as a few enhancement tags that you can use in your custom templates.

Left, Right and Footer Navigation
You can configure a global left, right and footer navigation in Manager and Pro by going to Preferences > Navigation. These tags can go in any template.

    [-- IF PageLinks.Left --][-- PageLinks.Left --][-- END_IF --]
    [-- IF PageLinks.Right --][-- PageLinks.Right --][-- END_IF --]
    [-- IF PageLinks.Footer --][-- PageLinks.Footer --][-- END_IF --]


Facebook Connect for Customer Registration
You can turn on the option for customers to register using Facebook by going to Commerce Setup > Customer Registration > Configure. This is a Pro only feature and these tags can only be used on the sign in screen in the customer registration template.

    [-- IF CR_FACEBOOK_CONNECT --][-- CR_FACEBOOK_CONNECT --][-- END_IF --]
    [-- Store.Email_SignUp_Or --]
      (text field "or")


Constant Contact Newsletter Sign Up
ShopSite version 11 integrates with Constant Contact. If you have a Constant Contact account you can choose if you would like to include the email sign up field on your store pages. To turn this on you would go to Merchandising > Constant Contact. This is available in ShopSite Manager and ShopSite Pro. The template tags can be used in page and product more information page templates.

    [-- IF Email_Signup --]
    [-- STORE.Email_SignUp_Text --]
    [-- Email_SignUp --]
    [-- END_IF --]


New Pagination Tags
Pagination is a ShopSite Pro only feature. You can configure pagination by going to Pages > Edit Page Layout, and specifying the number of products you want per page. Below are some tags to enhance that feature. Pagination tags can only be used in page templates.

    [-- IF PAGE.PaginatedPageNum NE 0 --]
    Page[-- PAGE.PaginatedPageNum --] of [-- PAGE.PaginatedPageNumMax --]
    [-- IF PAGE.PaginatedPageNum EQ PAGE.PaginatedPageNumMax --]
    LAST PAGE
    [-- ELSE_IF PAGE.PaginatedPageNum EQ 1 --]
    FIRST PAGE
    [-- END_IF --]
    [-- END_IF --]


New Google Product Search Tags
The Google Product Search information is passed to Google when you submit your products to be listed in the Google Product Search. Some merchants choose to display this information on their store pages. Below are the tags for the two new Google Product Search fields.

    [-- Product.GoogleGTIN --]   (ISBN or UPC)
    [-- Product.GoogleMPN --]   (Manufacturer Part Number)


New IF Tag Parameters
ShopSite has had IF/END_IF tag functionality for years but now there are new parameters that you can use.

    [-- IF parm1 EQ parm2 --]   (equals)
    [-- IF parm1 NE parm2 --]   (does not equal)
    [-- IF parm1 LT parm2 --]   (less than)
    [-- IF parm1 LE parm2 --]   (less than or equal to)
    [-- IF parm1 GT parm2 --]   (greater than)
    [-- IF parm1 GE parm2 --]   (greater than or equal to)