Browsing index pages (2 articles)
↧
Using a PHP function in Twig
I have a PHP code to add a new class for my Twig template in my common controller in: "opencart\htdocs\catalog\controller\common\cart.php"The code should check if the Device is Mobile or not.function...
View ArticleAnswer by duncan for Using a PHP function in Twig
What you need to do is create your own Twig function:https://twig.symfony.com/doc/3.x/advanced.html#functionsSo using their examples you should be able to do something like$function = new...
View Article
Browsing index pages (2 articles)