List out popular modules that compatible with Transformer theme and Panda theme.

How to integrate 3rd party modules on the my account page

1. Stripe official module Modify the /modules/stripe_official/views/templates/hook/my-account-stripe-cards.tpl file. Change 123456<a class="col-lg-4 col-md-6 col-sm-6 col-xs-12" title="{l s='My cards' mod='stripe_official'}" href="{$link->getModuleLink('stripe_official', 'stripeCards')|escape:'html':'UTF-8'}"> <span class="link-item"> <i class="material-icons md-36">payment</i> {l s='My cards' mod='stripe_official'} </span> </a> to 123<div class="list-group-item"><a class="lnk_psgdpr" title="{l s='My cards' mod='stripe_official'}" href="{$link->getModuleLink('stripe_official', 'stripeCards')|escape:'html':'UTF-8'}"> <i class="fto-credit-card mar_r4 fs_lg"></i>{l s='My cards' mod='stripe_official'} </a></div> 2. iFeedback module Modify the /modules/ifeedback/views/templates/hook/customer_account.tpl…

How to integrate the Attribute Wizard Pro Module work with Transformer theme and Panda theme

PrestaShop Attribute Wizard Pro Module can work with transformer theme v4 and panda theme v2 by default. Take the follow steps to make everything works perfectly. 1. Modify the /modules/stshoppingcart/views/templates/hook/stshoppingcart-product-line.tpl file: Change 123data-down-url="{$product.down_quantity_url}" data-up-url="{$product.up_quantity_url}" data-update-url="{$product.update_quantity_url}" To 123data-down-url="{$product.down_quantity_url}&special_instructions={$product.instructions_valid}&special_instructions_id={$product.instructions_id}" data-up-url="{$product.up_quantity_url}&special_instructions={$product.instructions_valid}&special_instructions_id={$product.instructions_id}" data-update-url="{$product.update_quantity_url}&special_instructions={$product.instructions_valid}&special_instructions_id={$product.instructions_id}" Change 1href="{$product.remove_from_cart_url}" To 1href="{$product.remove_from_cart_url}&special_instructions={$product.instructions_valid}" 2. Modify the /modules/attributewizardpro/views/js/awp_product.js file: Change 1$('.blockcart').replaceWith(resp.preview); To 1234567891011121314151617181920$('.shoppingcart-list').replaceWith(resp.preview); prestashop.emit('stUpdatedCart');    …

How to integrate the all-in-one rewards module with transformer theme and the panda theme

Take the following steps to make the links of all-in-one rewards module on my account page be visually compatible with transformer theme v4 and panda theme v2. 1. Modify the /modules/allinone_rewards/views/templates/hook/presta-1.7/customer-account.tpl file: Change 1<a class="col-lg-4 col-md-6 col-sm-6 col-xs-12" id="rewards-link" href="{url entity='module' name='allinone_rewards' controller='rewards'}"><span class="link-item"><i class="material-icons"></i>{l s='My rewards account' mod='allinone_rewards'}</span></a> To 12345<div class="list-group-item"> <a class="rewards-link" id="rewards-link"…

Small integrations to integrate popular modules with Transformer and Panda

1. How to integrate the "Premium Google Tag Manager" module with Transformer theme v4 and panda template v2. V2.5.0 and later 1. Add this code to the /modules/rc_pgtagmanager/views/js/hook/RcTagManagerLib.js file. 12!target.classList.contains('btn-spin') && !target.classList.contains('hover_fly_btn') && 2. Add this code to the /modules/rc_pgtagmanager/views/templates/hook/footer.tpl file. 123456prestashop.on(     'stUpdateCart',     function (event) {         rcTagManagerLib.eventAddCartProduct(event);…