Maverick
Location | Hyderabad, India |
---|---|
Gender | Male |
Age | 42 years |
Member since | October 28th, 2009 |
Last seen | 2 years ago |
Topics | 32 |
Replies | 15.4k |
Points | 6.66k |
A computer geek, who always love coding, now fell in love with beautiful Bootstrap framework :).
Loves coding as much as watching Sci-Fi movies. Designed and developed some of the popular Joomla! components and corejoomla.com with all passion and love towards programming. Strong believer in smart work and "Anything is possible".
I welcome your feedback and suggestions, reach me out through contact us form.
-
Maverick replied to the topic is possible to remove the: Poll created by ....
January 13 at 5:28 pm
Yes, 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. -
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} -
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;?> -
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) -
Maverick replied to the topic Can't build survey.
January 12 at 3:08 am
Can you please send me your website details using contact us form to check the issue? -
Maverick replied to the topic Can't hide category list in community polls component.
January 12 at 2:48 am
Yes, v4.4.0 is already released. If you have setup your downloadid in CjLib component, you will get update notification and you can update it within your site. If not, you can download from downloads section here. -
Maverick replied to the topic Cannot redeclare class CommunityQuizModelQuiz.
January 11 at 5:47 pm
This is a bug in the component. Do not publish any quiz modules (like Community Quiz module, Community Quiz Form module etc) on the quiz form page. -
Maverick created new article Community Polls v4.4.0 is released.
January 10 at 3:48 pm
We are pleased to announce Community Polls v4.4.0 release. We have added few most requested features in this release such as the ability to embed YouTube videos, EasySocial... -
Maverick replied to the topic Exclude Categories not work.
January 10 at 11:01 am
These are translated strings from English language. They are not hardcoded in source code. Please add translations in your language file to get them displayed in your language. -
Maverick replied to the topic Exclude Categories not work.
January 10 at 4:59 am
1. Possible, with some code modifications. They all cannot put here, I could provide you the patched files. Send me a mail using contact us form. 3. What all language strings not present? -
Maverick replied to the topic Exclude Categories not work.
January 9 at 7:52 pm
1. I am sorry, I couldn't follow what you are asking. can you please elaborate? 2. Make sure you have created CjBlog User Layout menu item and set appropriate access 3 These are not hardcoded strings, must be coming from your language file. if not present add below strings in your language file. COM_CJBLOG_FILL_BASIC_DETAILS="Fill basic details"COM_CJBLOG_FORM_EDIT_ARTICLE="Edit Article" -
Maverick replied to the topic Exclude Categories not work.
January 9 at 5:38 pm
CjBlog content plugin adds additional features to the Joomla articles like triggering events when an article created/read, adds header and footer to the article etc. -
Maverick replied to the topic Can't hide category list in community polls component.
January 9 at 4:21 pm
This is a bug. I have fixed this and will be available in tomorrow's release. -
Maverick replied to the topic Cannot Insert Images into Description Field with JCE Editor.
January 9 at 2:40 am
I suggest you to check the same hack with your template css instead. That way your updates don't have any impact. If your template can support adding custom code at the bottom of the page, you can use that to add custom style tag with this css. <style type="text/css">.ui-jce .ui-dialog {overflow: visible}</style>