shondalai.com Forum
-
Maverick replied to the topic Changing the field color in Community Survey.
January 13 at 3:45 pm
Add this #cj-wrapper a, #cj-wrapper a:visited, #cj-wrapper a:active {color: blue} -
Michael Tucker replied to the topic Changing the field color in Community Survey.
January 13 at 3:24 pm
In the screenshot, I want to change the color of the white field (just below the bue) to another color. What do I need to change in the media/com_communitysurveys/css/cj.survey.min.css file? Thanks, Mike -
'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 -
Maverick replied to the topic Changing the field color in Community Survey.
January 13 at 3:33 am
For which exact field you want to change the color? you can add necessary css code in media/com_communitysurveys/css/cj.survey.min.css or you can add it in your template css file. -
Maverick replied to the topic Clear Community Survey Responses?.
January 13 at 3:31 am
Did you mean responses? You can remove them from surevey reports-> view all responses page. -
Maverick replied to the topic Change "Cancel Button" URL.
January 13 at 3:30 am
You can simply replace the href value in your code above with your homepage url https://www.corejoomla.com/forum/support/community-surveys/15383-change-cancel-button-url.html#p25428 -
Maverick replied to the topic Category & Author.
January 13 at 3:27 am
For author see this: https://www.corejoomla.com/forum/support/community-polls/15445-is-possible-to-remove-the-poll-created-by.html For category, you need to disable in List Layout options. What you are try to do is Poll options which applies to poll details page. -
Maverick replied to the topic Can't hide category list in community polls component.
January 13 at 3:25 am
What you are doing to hide this? Did you disabled Show Categories Box option? -
Maverick replied to the topic is possible to remove the: Poll created by ....
January 13 at 3:21 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;?> -
Michael Tucker created new topic Changing the field color in Community Survey.
January 12 at 9:00 pm
Attached is a screen shot showing the fields that I would like to change the color of. How can I do this? Thanks, Mike -
Michael Tucker created new topic Clear Community Survey Responses?.
January 12 at 7:05 pm
How do I remove surveys from the database so that they are not included in the reports? Thanks, Mike -
Michael Tucker replied to the topic Change "Cancel Button" URL.
January 12 at 6:57 pm
What do I change this code to so that clicking "cancel" redirects to my home page? Thanks, Mike -
Jose Arce created new topic Category & Author.
January 12 at 6:07 pm
I am trying to hide the Author and Category. It wont let me. -
Jose Arce replied to the topic Can't hide category list in community polls component.
January 12 at 6:01 pm
I have version 4.4.0 and i still can not hide the categories. -
'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
-
Maverick replied to the topic Error message in poll.
January 12 at 4:55 pm
Go to Components->Community Polls->Click on options button on toolbar->Editing Layout options Choose allowed poll types and chart types. -
Maverick replied to the topic is possible to remove the: Poll created by ....
January 12 at 4:52 pm
Yes, you can disable in Community Polls options (List Layout options)