Skip to content

Instantly share code, notes, and snippets.

@unlocomqx
Last active January 13, 2023 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save unlocomqx/f0b86a1ce938405c315d5de979011b95 to your computer and use it in GitHub Desktop.
Save unlocomqx/f0b86a1ce938405c315d5de979011b95 to your computer and use it in GitHub Desktop.
Note: If you have the module ets_ordermanager, please check this file first
/modules/ets_ordermanager/views/PrestaShop/Admin/Sell/Order/Order/Blocks/View/product.html.twig
search:
{{ customization.value }}
replace:
{{ customization.value | raw }}
------------------------------------------------------------------------------------
Same if you have the module orderedit, the file to check is
/modules/orderedit/views/PrestaShop/Admin/Sell/Order/Order/Blocks/View/product.html.twig
------------------------------------------------------------------------------------
Also if you have the module pms_admin_order, the file to check is
/modules/pms_admin_order/views/Module/Admin/Sell/Order/Order/Blocks/View/product.html.twig
------------------------------------------------------------------------------------
/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Cart/Blocks/View/cart_summary.html.twig
search:
{{ customizationField.value }}
replace:
{{ customizationField.value | raw }}
------------------------------------------------------------------------------------
/src/PrestaShopBundle/Resources/views/Admin/Sell/Order/Order/Blocks/View/product.html.twig
search:
{{ customization.value }}
replace:
{{ customization.value | raw }}
------------------------------------------------------------------------------------
/mails/_partials/order_conf_product_list.tpl
search:
{$customization['customization_text']}
replace:
{$customization['customization_text'] nofilter}
------------------------------------------------------------------------------------
/mails/en/order_conf_product_list.tpl
search:
{$customization['customization_text']}
replace:
{$customization['customization_text'] nofilter}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment