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 more options to design the answers after poll is answered.
August 28 at 3:58 pm
Got it. A new class "selected-answer" is added only for the selected answers. Will be there in next release. -
Maverick replied to the topic Update Community Surveys Package 4.1.9 -> 4.2.1.
August 28 at 3:56 pm
Autoupdate is available only to the active members of community surveys. If you have active membership, please update your download key in your CjLib options. -
Maverick replied to the topic Questions' category access permission problem.
August 28 at 3:55 pm
Well this is something debatable. As per groupA, he should get access and as per groupB, he should be denied access. What would you do in such case? The standard practice Joomla ACL follows here is deny the access. How to fix this: do not give conflicting access to users. -
Maverick replied to the topic more options to design the answers after poll is answered.
August 28 at 6:24 am
@yorai, thank you for the good suggestions you made. I will add them in the next release. -
Maverick replied to the topic Assign Poll to an Author from Users-list.
August 28 at 6:18 am
Just override the front-end form view components/com_communitypolls/views/form/tmpl/edit.php Delete the portions you don't want. -
Maverick replied to the topic poll buttons not working on component's pages.
August 28 at 6:17 am
Yes. -
Maverick replied to the topic Updated to version 4.2.1 and can't access surveys.
August 27 at 8:13 am
To know why it is not generating, we need to understand what error is causing this. Try this: -> Go to global configuration and set error reporting to maximum-> Now generate the pdf report from your survey reports page You should see some error if it could not generate pdf. -
Maverick replied to the topic poll buttons not working on component's pages.
August 27 at 8:11 am
The issue is caused by conflict with jQuery and Mootools. I am not sure why your template still using mootools as everyone moved to jQuery long time ago. Anywhere here is the way to fix such issues. -> Load mootools first-> Load jQuery after Mootools This way jQuery's references will not lost. You can use third party plugins like jQuery Easy to mitigate such problem. Otherwise send me a mail using contact us form and I will provide you custom code hack. -
Maverick replied to the topic Assign Poll to an Author from Users-list.
August 27 at 7:51 am
Go to Options and Editing Layout tab. Enable "Show Publishing Options" option. -
Maverick replied to the topic Community Surveys send duplicate results emails.
August 25 at 10:29 pm
Can you please go and check what all files present in the location media/com_communitysurveys/attachments/responses? -
Maverick replied to the topic Updated to version 4.2.1 and can't access surveys.
August 25 at 5:05 pm
That means the developer tools console was not open when sending the request or it is disabled. Please try to refresh the page after the developer tools is open and then send request. From the message what I can understand is there is something went wrong either on server side or client side as there is no response data. This could be because of error in creating the response pdf. You can disable sending response in pdf option and check if it is cause of the issue. If yes then we need to find what could be the issue with generating the pdf. -
Maverick replied to the topic Upgrade to 3.8.
August 25 at 4:58 pm
Yes, the version information in the package is incorrect, but it is the right package. -
Maverick replied to the topic need help with i think the installation process or configuration.
August 24 at 8:39 pm
You need to create the menu items and also configure the options first. Also please try to use v2.0.0 which will replace v1 soon. -
Maverick replied to the topic need help with i think the installation process or configuration.
August 24 at 5:11 pm
What is the version of CjBlog and CjLib components you are using? -
Maverick replied to the topic Assign Poll to an Author from Users-list.
August 24 at 5:10 pm
You can change the poll author name from backend. Edit poll from admin site polls page and select Created By option under publishing tab. -
Maverick replied to the topic can't assing poll category if the languaghe is not ALL.
August 24 at 5:06 pm
Can you please send me your website details using contact us form so that I can check it? -
Maverick replied to the topic poll buttons not working on component's pages.
August 24 at 5:05 pm
There is an error shown on browser console related to tabs. Try this edit components/com_communitypolls/communitypolls.php and remove below line JHtml::_('behavior.tabstate'); -
Maverick replied to the topic Updated to version 4.2.1 and can't access surveys.
August 22 at 11:40 am
Do you see any error on browser console? Debug the ajax request using below procedure. http://wiki.corejoomla.com/Debug_ajax_requests_using_Chrome_developer_tools -
Maverick replied to the topic Questions' category access permission problem.
August 22 at 7:17 am
Thanks for the explanation. I found where the issue is and fixed it. I am preparing a new release for this. -
Maverick replied to the topic Invalid Controller Error.
August 22 at 6:51 am
This looks quite strange. JRoute function is returning your homepage url in this case instead of component page and hence the issue. Here is some workaround for solving this issue. Edit components/com_communityanswers/layouts/default/ask_form.php and find <form action="<?php echo JRoute::_('index.php');?>" method="post" class="no-space-bottom margin-top-10"> Change it to <form action="<?php echo JRoute::_(CommunityAnswersHelperRoute::getFormRoute());?>" method="post" class="no-space-bottom margin-top-10">