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.


Recent activity
  • Maverick replied to the topic Voting Limit.

    July 30 at 3:57 pm

    All your settings are correct. Try to set Vote Expiration to some large number such as 525600. If your voters are guest users, only possible options to restrict multiple votes are cookies and ip addresses. But users can delete cookies and vote again. ip addresses will change if they are not static.

    9 years ago

  • Maverick replied to the topic Voting Limit.

    July 30 at 3:54 pm

    Closing duplicate ticket. https://www.corejoomla.com/forum/support/community-polls/15171-voting-limit.html

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 29 at 6:03 pm

    Thanks for confirmation. Yes, I do thought of the same option after going through this thread. It would be easy for anyone to have an option to switch between all or completed responses for consolidated report.

    9 years ago

  • Maverick replied to the topic No maps on HTTPS.

    July 29 at 4:58 pm

    This issue already fixed in my local version but is not there yet in downloads. Here is the quick fix. Edit components/com_gpstools/views/track/view.html.php and find $document->addScript( 'http://maps.googleapis.com/maps/api/js?key='.$this->params->get('maps_api_key', '').'&sensor=false' ); change it to $document->addScript( 'https://maps.googleapis.com/maps/api/js?key='.$this->params->get('maps_api_key', '').'&sensor=false' ); Edit components/com_gpstools/views/form/view.html.php and find $document->addScript('http://maps.googleapis.com/maps/api/js?key='.$this->params->get('maps_api_key', '').'&sensor=false'); change it to $document->addScript('https://maps.googleapis.com/maps/api/js?key='.$this->params->get('maps_api_key', '').'&sensor=false');

    9 years ago

  • Maverick replied to the topic Social sharing.

    July 29 at 4:55 pm

    Website address please?

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 29 at 3:18 pm

    Yes. this is what you needed for the consolidated report.

    9 years ago

  • Maverick replied to the topic No maps on HTTPS.

    July 29 at 9:03 am

    Can you let me know the websire address to see the issu3?

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 29 at 2:29 am

    All right, here is the final query all you need to build only completed responses details in your consolidated report.  Edit components/com_communitysurveys/models/survey.php and find at line 3510 $query = ' select question_id, answer_id, column_id, count(*) as votes from #__survey_response_details where question_id in (select id from #__survey_questions where survey_id='.$id.') and group by answer_id, column_id order by question_id'; Change it to $query = ' select question_id, answer_id, column_id, count(*) as votes from #__survey_response_details where response_id in (select r.id from #__survey_responses r where r.survey_id='.$id.' and r.completed > r.created) and (answer_id > 0 or column_id > 0) group by answer_id, column_id order by question_id';

    9 years ago

  • Maverick replied to the topic Final Score at Top & Skip Intro.

    July 28 at 6:50 pm

    In v4, the quiz is taken with Ajax methods. So there is no previous files here. Edit components/com_communityquiz/controllers/response.json.php And you should find below code foreach ($questions as $question){ $question->rid = $responseId; $output = $output . JLayoutHelper::render($layout.'.results.question', array('item'=>$question, 'params'=>$params, 'rid'=>$responseId, 'basePath'=>''));}$output = $output . JLayoutHelper::render($layout.'.results.score', array('item'=>$quiz, 'params'=>$params, 'rid'=>$responseId)); The last line is for displaying the results and the for loop is for displaying questions. So you can be the last line above the for loop there. Show Intro: This should be a bug. I am fixing this.

    9 years ago

  • Maverick replied to the topic Error - You have already responded to this quiz..

    July 28 at 3:15 am

    Edit your quiz and set "Allow Multiple Responses" to Yes in your quiz options.

    9 years ago

  • Maverick replied to the topic How can visitors display all tracks that have been added?.

    July 27 at 4:04 pm

    I suggest you to refrain from showing such huge number of points. A 1000 points map would be the max limit imho.

    9 years ago

  • Maverick replied to the topic How can visitors display all tracks that have been added?.

    July 27 at 3:51 pm

    You can set the number of tracks to display to higer value and it will show them. But I am not sure if there is some limitation of number of points displayed on Google Map.

    9 years ago

  • Maverick replied to the topic Multipage Surveys - How To?.

    July 27 at 3:45 pm

    Just beside the dropdown, you should see a dropdown button with all commands.

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 27 at 3:03 am

    If I count total number of votes for each answer in your first question then it shows the correct number. So I can't think of anything wrong in that. You can find and delete the response details which are not belong to the 18 responses given by the users with the following sqls. (please make sure only 18 rows in xxx_survey_responses table, otherwise what you are saying about "only 18 completed responses exist" goes somewhere wrong) Check if there are any rows: select * from xxx_survey_response_details where response_id not in (select id from xxx_survey_responses where survey_id = YOURSURVEYID) If any, delete them as these are somehow not deleted when you deleted responses (if any): delete from xxx_survey_response_details where response_id not in (select id from xxx_survey_responses where survey_id = YOURSURVEYID) Do this if you have only one survey as I have not added check for multiple surveys above.

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 26 at 6:26 pm

    Ahh, ok got you what you are saying. Sorry for the misunderstanding. So you are asking for the number that you see below each question. Sorry abou the confusion. Thats a language error. it should read "Total votes" or "Total answers" instead of "Total responses" because it is the total number of answers given on that question. And since multiple choice questions have multiple answers selectable, the count will vary. So what the component displays is correct except the misleading language string. "Total Responses" is something applicable on entire report as the number of responses will not vary on question to question basis. To avoid confusion change the language string itself instead of changing any other code (languages/en-GB/en-GB.com_communitysurveys.ini). LBL_TOTAL_RESPONSES="Total responses"

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 26 at 5:03 pm

    Pending responses can be viewed from the "View All Responses" link in your reports dashboard page. These are the responses users started entering but have not yet completed. You can see the status icon on that page. There is one possible solution to show only completed responses results in consolidated report by modifying code. But I feel its good to include everything. Users are already gave answers but some or the other reasons they forgot clicking finish button. So I believe it should include all.

    9 years ago

  • Maverick replied to the topic Categories Not Displaying on Questions Layout Page.

    July 26 at 4:59 pm

    If the value is "Inherited" and the status shows "Allowed", that means the category should be allowed to show. It is pretty weired why it is not shown as Joomla permissions shown will work fine as is. I cannot understand the logic of explicitely making them allowed when global permissions are already allowing it.  So the last guess, since there is no way I can see your site, is the categories may have not properly inherited the settings. The only possible situation for this is the categories are created before the component options are configured. In this case edit and save the category (even without doing any changes) will solve the issue. Can you try this?

    9 years ago

  • Maverick replied to the topic Total Reponses Figure (Number) Per Question.

    July 26 at 1:50 pm

    There are two things you need to consider. 1. Completed responses2. Pending responses The count shown in your screenshot is total responses as there is no way to separate completed to the pending responses. But you can check status of each response in responses list page on the reports section. So I guess you can easily find where these extra responses came from.

    9 years ago

  • Maverick replied to the topic Categories Not Displaying on Questions Layout Page.

    July 26 at 1:46 pm

    Can you please post screenshots of one of your catrgory edit page? Check the access level view question permission on your individual categories language of the category All these should match your menu item. Also if you have "Category" menu items, make sure you have set max level option of the menu item greater than 0.

    9 years ago

  • Maverick replied to the topic Categories Not Displaying on Questions Layout Page.

    July 26 at 5:07 am

    Make sure the following: 1. The menu item type you created is "Questions Layout" (for same as the one on demo).2. Option "Show Category List" is enabled under Shared Options tab of Community Answers Options.

    9 years ago

Powered by CjForum