- Go to CONFIGURATION > INTEGRATIONS > OTHER and uncheck activity in trusted opinions
- Go to CONFIGURATION > CUSTOMERS > ADDITIONAL FORM FIELDS and add a new field type Select to order
- Click on the button "Save"
- After you save the changes to see what ID has been assigned for the new fields-to remember
- Go to CONFIGURATION > INTEGRATIONS > OWN INTEGRATIONS and add the following code to the section Confirmation of order:
{if additional_2_value == "YES"}
<script type="text/javascript">
<!--
ceneo_client_email = '{email}';
ceneo_order_id = '{order_id}';
ceneo_shop_product_ids = '{products}#{products.product_id}{/products} ';
ceneo_work_days_to_send_questionnaire = 3;
//-->
</script>
<script type="text/javascript" src="https://ssl.ceneo.pl/transactions/track/v2/script.js?accountGuid=
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXX"></script>
{/if} - The values to be replace in the above code is:
ceneo_work_days_to_send_questionnaire - parameter specifies the number of working days to ship surveys, for a giventhe contract, containing from 0 to 21 days
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXX - the number of GUID by Ceneo
additional_2_value - number 2 replaces the Additional ID form field - Click on the button "Save"
In order to participate in the store's buyer protection, your code should look like the following:{if additional_2_value == "YES"}
<script type="text/javascript">
<!--
ceneo_client_email = '{email}';
ceneo_order_id = '{order_id}';
ceneo_shop_product_ids = '{products}#{products.product_id}{/products} ';
ceneo_work_days_to_send_questionnaire = 3;
//-->
</script>
<script type="text/javascript" src="https://ssl.ceneo.pl/transactions/track/v2/script.js?accountGuid=
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXX"></script>
{else}
<script type="text/javascript">
<!--
ceneo_client_email = ' ';
ceneo_order_id = '{order_id}';
ceneo_shop_product_ids = '{products}#{products.product_id}{/products} ';
ceneo_work_days_to_send_questionnaire = 3;
//-->
</script>
<script type="text/javascript" src="https://ssl.ceneo.pl/transactions/track/v2/script.js?accountGuid=
XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXXX"></script>
{/if}