mod_latestnews + new windows link - Joomla! Forum - community, help and support
who configure mod_latestnews link open new windows ?
thanks.
thanks.
you have edit file default.php located in directory \modules\mod_latestnews\tmpl , change following line of code shown:
before edit:
after edit:
being core joomla! file, suggest following output override technique documented @ http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core.
before edit:
code: select all
<a href="<?php echo $item->link; ?>" class="latestnews<?php echo $params->get('moduleclass_sfx'); ?>">after edit:
code: select all
<a href="<?php echo $item->link; ?>" class="latestnews<?php echo $params->get('moduleclass_sfx'); ?>" target="_blank">being core joomla! file, suggest following output override technique documented @ http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core.
Comments
Post a Comment