Hi there,
www.sitio.com/hispano
The date on the top is showing "l, j M Y" instead of the date itself.
How can I fix this?
Thanks,
Richard
Your date is not working: date is defined using this:
- Code: Select all
<?php if($_date) : ?>
<div id="date"><?php echo date($date_format); ?></div>
<?php endif; ?>
And this is php code for date variables:
- Code: Select all
$_date = $this->params->get("_date", 1);
$date_format = $this->params->get("date_format", 'M j');
<?php if($this->template->params->get("date",1)) : ?>
<div id="addons_b">
<?php echo JHTML::_('date','now',$this->template->params->get("date_format","%A, %d %b %Y")); ?>
</div>
<?php endif; ?>