Hide Weblink Hits Counter - Joomla! Forum - community, help and support
i testing j3 , having problems hiding weblink hits counter. have set following settings:
1. weblinks manager options - list layout - hits = hide
2. menu item pointing specific category of weblinks - advanced options - list layout - hits = hide
3. weblinks module - basic options - hits = hide
with hits counter still shows in category listing of weblinks. advice/guidance appreciated.
j!3.0.2
admin template: isis
site template: protostar
1. weblinks manager options - list layout - hits = hide
2. menu item pointing specific category of weblinks - advanced options - list layout - hits = hide
3. weblinks module - basic options - hits = hide
with hits counter still shows in category listing of weblinks. advice/guidance appreciated.
j!3.0.2
admin template: isis
site template: protostar
i think found bug in weblinks component regards hiding hit counter in front end. 1 of parameters in component has wrong name. below code fix believe. cheers.
com_weblinks\views\category\tmpl\default_items.php
line 62
replace - <?php if ($this->params->get('list_show_hits', 1)) : ?>
with - <?php if ($this->params->get('show_link_hits', 1)) : ?>
com_weblinks\views\category\tmpl\default_items.php
line 62
replace - <?php if ($this->params->get('list_show_hits', 1)) : ?>
with - <?php if ($this->params->get('show_link_hits', 1)) : ?>
Comments
Post a Comment