To override the submit path set an object variable called “icf_options”, before the iConfigurator embed code, as follows.
<!– iConfigurator Submit Path override –>
<script>
  var icf_options = {‘configBuy’: {‘strSubmitPath’: ‘http://PAGE_SPECIFIC_SUBMIT_PATH.org‘}}
</script>
Similarly, you can override the “location_id”, that gets passed to TireConnect, as follows.
<!– iConfigurator set location_id for cart integration–>
<script>
  var icf_options = {‘configBuy’: {‘addUrlParams’: [{‘location_id’: 20340}]}}
</script>
To override both the submit path and location_id, set icf_options as follows.
<!– iConfigurator set location_id for cart integration and –>
<script>
  var icf_options = {‘configBuy’: {
                                  ‘strSubmitPath’: ‘http://PAGE_SPECIFIC_SUBMIT_PATH.org
                                  ‘addUrlParams’: [{‘location_id’: 20340}]}}
</script>
The icf_options object variable must execute on the page before the iConfigurator embed code. Simply place the options override code before/above the iConfigurator embed code.

Was this article helpful to you?

Jose Contreras

Comments are closed.