Provide instructions to embed iframe plugin code onto a website.
Plugin will allow customer to embed Augusta Freestyle sublimation catalog page in their site and customize the design in such way the end user will be able to browse through the sublimation product and customize design and submit the design for further processing from the customer site only.
The iframe works best with a full width header/footer page. Page Header and page footer Height should be fix. The iframe is mobile responsive, so if width of iframe is less than 1024px then it will display a more mobile friendly view.
If you are using the website builder named Wix, then you will need to add additional code before you add the rest of the code.
https://www.youtube.com/watch?v=g5gmBXvA31w is an instructional video to help with implementing on Wix.
You can display different category by passing query string parameter categoryName to your page.
Sample link to your page: https://xyz.com/configurator?categoryName=baseball
Sample link to your page: https://xyz.com/configurator?categoryName=soccer
If Customer wants to add lead time days in addition to the Augusta Lead Time then update the categoryArray addlLeadTime accordingly.
For example:
categoryArray = [ {'name' : 'baseball', 'discount' : 20, 'addlLeadTime' : 2 }
If Customer wants to discount Augusta MSRP then update the categoryArray discount with percentage amount accordingly.
The maximum percentage allowed is 20.
For example:
categoryArray = [ {'name' : 'baseball', 'discount' : 20, 'addlLeadTime' : 2 }
Increasing the MSRP is also supported by using a negative discount.
For example:
categoryArray = [ {'name' : 'baseball', 'discount' : -20, 'addlLeadTime' : 2 }
Hiding the MSRP is supported by using discount value -1000.
For example:
categoryArray = [ {'name' : 'baseball', 'discount' : -1000, 'addlLeadTime' : 2 }
We have a feature to share the custom design below is the sample url for share design
https://xyz.com/configurator?sNumber=S741687&categoryName=Basketball
Plugin code will redirect user to configurator page and open the respective design.
This requires the path /configurator to have iframe embedded.
In order to display a MOQ message, you can update the categoryArray "moq" accordingly.
You can also communicate an extra charge for order below the MOQ using the parameter "moqPrice" in the categoryArray.
For example:
categoryArray = [ {'name' : 'baseball', 'discount' : 20, 'addlLeadTime' : 2,'moq':12, 'moqPrice':60 }
On Configurator page user can select design change color on color tab add/remove text/logo on text and logo tab. on the roster tab user can select size specify team/player name by entring roster data. Once roster data adds user can review the selection on summary tab and process the order here user need to give the contact information and the submit the design for processing. Once the Design submit will send the email to customer service with the submit design detail for further processing.