mod_latestnews + new windows link - Joomla! Forum - community, help and support
who configure mod_latestnews link open new windows ?
thanks.
thanks.
this should done tenplate override subsequest updats not destry work.
change:
to this:
that's line 12 of my
/modules/mod_articles_latest/tmpl/default.php
yours may vary...
read on overrides at:
http://docs.joomla.org/layout_overrides_in_joomla_1.6
change:
code: select all
<ul class="latestnews<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list $item) : ?>
<li>
<a href="<?php echo $item->link; ?>">
<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ul>
to this:
code: select all
<ul class="latestnews<?php echo $moduleclass_sfx; ?>">
<?php foreach ($list $item) : ?>
<li>
<a href="<?php echo $item->link; ?> target=\"_blank\"">
<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ul>
that's line 12 of my
/modules/mod_articles_latest/tmpl/default.php
yours may vary...
read on overrides at:
http://docs.joomla.org/layout_overrides_in_joomla_1.6
Comments
Post a Comment