{% if languages|length >= 1 %}
this is the twig file code . how can we write this code in tpl file . i am converting opencart 3.0.2.0 theme into opencart 2.3.0.2 . I am facing problem to solve | this sign . mean how can i convert this line in tpl exactly .thanks
You can use count
function:
<?php if(count($languages) >= 1){ ?>
<?php } ?>