Question

Codeigniter has a function, base_url()

<?php echo base_url('/file')?>

that prints the absolute URL,

Is there any equivalent for Opencart?

Was it helpful?

Solution

Look in the header.php controller file

 if (isset($this->request->server['HTTPS']) && (($this->request->server['HTTPS'] == 'on') || ($this->request->server['HTTPS'] == '1'))) {
     $this->data['base'] = $this->config->get('config_ssl');
  } else {
     $this->data['base'] = $this->config->get('config_url');
  }

Just call below from your template file.

<?php echo $base; ?>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top