'Francesco Perin
-
'Francesco Perin replied to the topic is possible to remove the: Poll created by ....
January 15 at 12:06 pm
PERFEKT - Thanx -
'Francesco Perin said thank you to Maverick for his/her reply to the topic is possible to remove the: Poll created by ....
January 13 at 6:10 pm
Yes, this is a known issue. The option is present but was not used in listing layouts. in the same file, change this code <?php if(isset($item->displayDate)):?> to <?php if($params->get('list_show_date') && isset($item->displayDate)):?> now go to list layout options of CP and select hide for show date option. -
'Francesco Perin replied to the topic is possible to remove the: Poll created by ....
January 13 at 5:12 pm
hi Maverick, sorry i have one ask, I can remove the date? best regards -
'Francesco Perin said thank you to Maverick for his/her reply to the topic is possible to remove the: Poll created by ....
January 13 at 10:26 am
Yes, you can disable in Community Polls options (List Layout options) -
'Francesco Perin said thank you to Maverick for his/her reply to the topic is possible to remove the: Poll created by ....
January 13 at 10:25 am
You are correct, the condition check for it is missing in components/com_communitypolls/layouts/(default or bootstrap3)/polls_list.php line 159 <li class="muted"> <?php if($profileComponent != 'none') { $profileLink = JHtml::link($profileUrl, $author); echo JText::sprintf('COM_COMMUNITYPOLLS_POLL_CREATED_BY', $profileLink); } else { echo JText::sprintf('COM_COMMUNITYPOLLS_POLL_CREATED_BY', $author); } ?></li> This code should be <?php if($params->get('list_show_author', 1) == 1):?><li class="muted"> <?php if($profileComponent != 'none') { $profileLink = JHtml::link($profileUrl, $author); echo JText::sprintf('COM_COMMUNITYPOLLS_POLL_CREATED_BY', $profileLink); } else { echo JText::sprintf('COM_COMMUNITYPOLLS_POLL_CREATED_BY', $author); } ?></li><?php endif;?> -
'Francesco Perin replied to the topic is possible to remove the: Poll created by ....
January 13 at 10:25 am
Thank you has worked wonderfully. Best regards www.perin-nutzfahrzeuge.de -
'Francesco Perin replied to the topic is possible to remove the: Poll created by ....
January 12 at 5:57 pm
no working -
'Francesco Perin replied to the topic is possible to remove the: Poll created by ....
January 12 at 5:56 pm
-
'Francesco Perin created new topic is possible to remove the: Poll created by ....
January 12 at 9:46 am
Hi, I do not want to see that in my polls the author and the days in the category page. Is possible ?