Web Links Display - Joomla! Forum - community, help and support
how can rid of numbering left of web link icon? see http://backspinent.com/index.php?option ... &itemid=56 -- want rid of automatic numbering (1, 2, 3, ....) when web links displayed. php file within com_weblinks need tweak? thanks.
after lot of searching same fix found this:
http://www.joomla4web.com/blog/template-overrides---part-3.html?blogger=bill+tomczak
i replaced code on line 41 of default_items.php in template override file described bill
with this
to replace numbers created dates. can delete code generates numbering if want rid of completely
http://www.joomla4web.com/blog/template-overrides---part-3.html?blogger=bill+tomczak
i replaced code on line 41 of default_items.php in template override file described bill
code: select all
<?php echo $this->pagination->getrowoffset( $item->count ); ?>with this
code: select all
<?php echo date('d m y',strtotime($item->date)); ?>to replace numbers created dates. can delete code generates numbering if want rid of completely
Comments
Post a Comment