Code: Select all
$subfooter[1]["description"][1];
Code: Select all
$lang = $this->language->get('code');
My full code:
Code: Select all
<?php $subfooter = $this->config->get('welcome_module');
$subfooter_counter = count($subfooter);
?>
<div class="column">
<?php
if ($subfooter_counter >= 1 && $subfooter[1]["status"])
echo html_entity_decode($subfooter[1]["description"][1]);
?>
</div>
<div class="column">
<?php
if ($subfooter_counter >= 2 && $subfooter[2]["status"])
echo html_entity_decode($subfooter[2]["description"][1]);
?>
</div>