How to get the current url in a OpenCart .tpl file?

opencart, php

Solution

To get full url

<?php
$url = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
?>

and btw those answers work on tpl files also because tpl files are sort of php files only

Problem

I'd like to get the current url in a .tpl file in OpenCart. I've seen this answer but it works only in a php file. I have to get this way: ``` _my_array.push(['_productName',"<?php echo $heading_title; ?>"]); **_my_array.push(['_productUrl', ["how can I get url ?"]]);** ``` Thanks

Original source

Related problems