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 Random poll error.
September 11 at 2:19 am
Public users do not have any date settings, so you cannot predict the outcome. It will be differed by max the amount of difference in timezone. -
Maverick replied to the topic STARTDATE and ENDDATE display.
September 11 at 2:17 am
1. No 2. There is no such concept like invalid votes. you can make a question mandatory and they must answer it. However you cannot force sombody to select only particular option. If that is what you expect, community quiz is the best choice than CS. -
Maverick replied to the topic STARTDATE and ENDDATE display.
September 10 at 4:54 pm
1. Edit components/com_communitypolls/views/survey/tmpl/default.php and find echo JText::sprintf('TXT_LIST_ITEM_META', $user_name, $category_name, $formatted_date); Change it to $published_date = CJFunctions::get_formatted_date($item->publish_up);$unpublish_date = CJFunctions::get_formatted_date($item->publish_down);echo JText::sprintf('TXT_LIST_ITEM_META', $user_name, $category_name, $formatted_date, $published_date, $unpublish_date); Now find below string your language file languages/en-GB/en-GB.com_communitysurveys.ini TXT_LIST_ITEM_META="Submitted by %1$s in %2$s, %3$s." Change it to TXT_LIST_ITEM_META="Submitted by %1$s in %2$s, %3$s. Publish date: %4$s. End date: %5$s" 2. Edit media/com_communitysurveys/js/cj.survey.min.js find var chart = new google.visualization.PieChart(document.getElementById($(this).find('.chart-wrapper').attr('id'))); change it to var chart = new google.visualization.ColumnChart(document.getElementById($(this).find('.chart-wrapper').attr('id'))); -
Maverick replied to the topic conditional "show question..." not working for text questions.
September 10 at 4:21 pm
I created a rule and it saved without issue. Is this happen only for newly created survey or for everything? -
Maverick replied to the topic Multiple Questions.
September 10 at 4:20 pm
For 2: There is a css conflict. Add below code in your template css/override file. .cs-nav-collapse {overflow: inherit;} -
Maverick replied to the topic Random poll error.
September 10 at 3:01 am
Here are the list of conditions you need to check. If all these satisfy, then only results will be shown. View Results permission is given to the user group (in CP permission settings) Results up date is less than current date (which you already have) So the only condition you need to check is the permission settings. -
Maverick replied to the topic Previous and next button.
September 9 at 6:08 pm
No such feature exists. But you can show suggestions i.e. related polls, author polls, latest polls or most voted polls. -
Maverick replied to the topic Random poll error.
September 9 at 3:26 am
I dont see any errors in your screenshot. If you are talking about the message "Poll results are hidden from public viewing", it is not the error. Set your publish results date in your poll to some previous date and the poll results will be shown. -
Maverick replied to the topic On click "ask question" redirect to login page.
September 9 at 3:23 am
This feature is already implemented. will be available with next release. -
Maverick replied to the topic Registered user cant add question.
September 9 at 3:21 am
Set public user group permission to inherit so that you can change the child user group permission. If you have set permission for public user group to "Denied" you cannot change the same permission for child groups. -
Maverick replied to the topic Cummunity Surveys Form module styling.
September 8 at 5:09 pm
Add your styling to the wrapper element with id "cj-wrapper". For example: #cj-wrapper {border: 1px solid #ccc} -
Maverick replied to the topic New and copy button does not show up on community survey.
September 8 at 5:07 pm
Did you created categories and configured options? -
Maverick replied to the topic Deleting a survey questions whilst creating a survey causes hanging.
September 8 at 5:07 pm
That greyed our screen could be the possible css conflict of your template. Please send me your website details using contact us form, I will check it out. -
Maverick replied to the topic Can't Uninstall.
September 8 at 3:32 am
I just checked your site. I am able to save articles and save template. I did not checked installing extensions as I don't want to. -
Maverick replied to the topic export surveys data.
September 8 at 3:29 am
Go to Reports page of any survey and you can view or export the csv file of all your responses from there. From your responses list page in reports section, you can export the responses to PDF as well. -
Maverick replied to the topic Random poll error.
September 8 at 3:27 am
Are you using latest version or old one? Since these are notice messages, the quick fix is to set Error Reporting option to none in your global configuration. -
Maverick replied to the topic Can't Uninstall.
September 8 at 3:24 am
I had uninstalled only Article Suggestions module and plugin along with CjLib. No other changes were done, but anyway I will check and let you know. Since this is a staging website, I believe you have a backup from which you can restore and retest the same steps. -
Maverick replied to the topic Can't Uninstall.
September 7 at 7:03 pm
You have Article Suggestions module and plugin are installed as well and hence it shows error. These two extensions need CjLib library. -
Maverick replied to the topic Can't Uninstall.
September 7 at 5:22 pm
Please send me your website details using contact us form, I will clean it up for you. -
Maverick replied to the topic Line the answers up with the radio buttons .
September 7 at 4:29 pm
Try to add below code in your template css file. .poll-template input[type="radio"], .poll-template input[type="checkbox"], .poll-template label {display: inline-block;}