Tag Archives: How

How to Force Opt-In automatically instead of having to go into each contacts details – Business Catalyst

just add: &amp;Optin=True at the form action, see example below: HTML example   <form action="/FormProcessv2.aspx?WebFormID=10090&amp;OID={module_oid}&amp;OTYPE={module_otype}&amp;EID={module_eid}&amp;CID={module_cid}&amp;Optin=True" enctype="multipart/form-data" onsubmit="return checkWholeForm13472(this)" method="post" name="catwebformform13472">  
Posted in Business Catalyst / GoodBarry | Also tagged , , , , | Leave a comment

How to add a surcharge to the Amex option for the checkout form in the Online Store – Business Catalyst

Use onchange to alert the customer that a charge will occur and then the function doMath() calculates the surcharge. JavaScript   <script type="text/javascript">      function checkSel(obj) {       var ind = obj.selectedIndex;       if  (ind == 3) {           alert(‘This Card incurs a 3.5% Surcharge.’);   [...]
Posted in Business Catalyst / GoodBarry | Also tagged , , , , , , , , , | Leave a comment