You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Good afternoon. I needed help with the representation of items in category blog. after the upgrade to version 1.4 on the representation does not show me the date. I was watching the blog_item.php file located in templates / meet_gavern / html / com_content / category / problem is in line 22 where the following code is executed
$ aside_visible = ($ params-> get ('show_modify_date')) or ($ params-> get ('show_publish_date')) or ($ params-> get ('show_hits')) or ($ params-> get (' show_category ')) or ($ params-> get (' show_create_date ')) or ($ params-> get (' show_parent_category ')) or ($ params-> get (' show_author ')) or $ params-> get ('show_publish_date') or ($ params-> get ('show_print_icon') || $ params-> get ('show_email_icon') || $ canEdit);
to run the template put the following:
$ aside_visible = true;
This way I could see the date. But would need to know what would be the right solution. Thank you for your time. I await your response.
P/D: My english sucks! sorry
The text was updated successfully, but these errors were encountered:
Hi @RenzV3 could you try the following
replace in templates/meet_gavern/html/com_content/category/blog_item.php
$aside_visible = ($params->get('show_modify_date')) or ($params->get('show_publish_date')) or ($params->get('show_hits')) or ($params->get('show_category')) or ($params->get('show_create_date')) or ($params->get('show_parent_category')) or ($params->get('show_author')) or$params->get('show_publish_date') or ($params->get('show_print_icon') || $params->get('show_email_icon') || $canEdit);
Good afternoon. I needed help with the representation of items in category blog. after the upgrade to version 1.4 on the representation does not show me the date. I was watching the blog_item.php file located in templates / meet_gavern / html / com_content / category / problem is in line 22 where the following code is executed
$ aside_visible = ($ params-> get ('show_modify_date')) or ($ params-> get ('show_publish_date')) or ($ params-> get ('show_hits')) or ($ params-> get (' show_category ')) or ($ params-> get (' show_create_date ')) or ($ params-> get (' show_parent_category ')) or ($ params-> get (' show_author ')) or $ params-> get ('show_publish_date') or ($ params-> get ('show_print_icon') || $ params-> get ('show_email_icon') || $ canEdit);
to run the template put the following:
$ aside_visible = true;
This way I could see the date. But would need to know what would be the right solution. Thank you for your time. I await your response.
P/D: My english sucks! sorry
The text was updated successfully, but these errors were encountered: