product_makeanoffer_new.html

Purpose:


Note:

Code Blocks

Note: It is important to preserve the commented tags to ensure the software performs correctly.

Think of our Code Blocks as code includes within your HTML document. For example, if you wanted to add a breadcrumb to your page, you need the breadcrumb codeblock, plus the necessary variables inside that codeblock.

<!--START: pricing-->
        [product_yourprice]
        <!--START: ITEMPRICE-->
            [price]
        <!--END: ITEMPRICE-->
        <!--START: SALEPRICE-->
            [product_onsale]
            [saleprice]
        <!--END: SALEPRICE-->
    <!--END: pricing-->
    <!--START: newOfferAmount-->
    	[makeanoffer_your-offer]
    <!--END: newOfferAmount-->
    <!--START: newOfferForm-->
    	[makeanoffer_name]
        <!--START: nameTxt-->
            [custName]
        <!--END: nameTxt-->
        <!--START: nameHdn-->
            [custName]
        <!--END: nameHdn-->
		[makeanoffer_email]
        <!--START: emailTxt-->
            [custEmail]
        <!--END: emailTxt-->
        <!--START: emailHdn-->
            [custEmail]
        <!--END: emailHdn-->
        [makeanoffer_comments]
        <!--START: captcha-->
        [makeanoffer_captcha]
        <!--END: captcha-->
    <!--END: newOfferForm-->
    <!--START: newOfferThankyou-->
    [offerReceivedMsg]
    <!--END: newOfferThankyou-->
    <!--START: errorMsg-->
    [errorMsg]
    <!--END: errorMsg-->
 

Codeblocks and its variables will only work in specific pages.

Variables

Think of our Codeblocks as code includes within your HTML document. For example, if you wanted to add a breadcrumb to your page, you need the breadcrumb codeblock, plus the necessary variables inside that codeblock.

  • [makeanoffer_new-offer-title]
  • [name]
  • [product_yourprice]
  • [price]
  • [product_onsale]
  • [saleprice]
  • [makeanoffer_your-offer]
  • [makeanoffer_name]
  • [custName]
  • [makeanoffer_email]
  • [custEmail]
  • [makeanoffer_comments]
  • [makeanoffer_captcha]
  • [offerReceivedMsg]
  • [errorMsg]
X