Best Practices
From Laris Support Wiki
Here is a list of Best Practices to do while using Laris.
1. Entering your Reference Value into your template
To bring your Reference Value into your Template design, follow these steps:
A. View the source of your PRODUCT DETAILS page. You can do this by right clicking on the page, and then click on View Source.
B. Find the number associated with the Product Reference that you want to use. This number is the referenceid.
C. Use the following tags in your template to pull in the reference NAME or VALUE:
This will pull in the PRODUCT REFERENCE NAME.
'#REFERENCE_referenceid_VALUESTART#'
'#REFERENCE_referenceid_NAME#'
'#REFERENCE_referenceid_VALUEEND#'
This will pull in the PRODUCT REFERENCE VALUE.
'#REFERENCE_referenceid_VALUESTART#'
'#REFERENCE_referenceid_VALUE#'
'#REFERENCE_referenceid_VALUEEND#'
All of the above tags should be copied without the quotation marks.
By using the start and end tags, if the reference is left blank, nothing associated with that reference will show up in your template.
Here's an practical example...
Let's say you have a reference with id 11111 that is named "Height". You fill in "12in." as the value.
Using the following code:
#REFERENCE_11111_VALUESTART#<span style="float:left;margin-left:5px;font-weight:bold">#REFERENCE_11111_NAME#:</span><span style="float:right;margin-right:5px;">#REFERENCE_11111_VALUE#</span><br>#REFERENCE_28144_VALUEEND#
You would see:
Height: 12in.
Back to Main Page.

