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 redirect after survey submission not working.
September 7 at 5:38 am
Make sure Show Report option is disabled for your survey. The redirect will happen on browser side using replace url method. Please check if there are any errors on console. -
Maverick replied to the topic answering a survey does not create a "form-submission" event in GTM.
September 7 at 5:31 am
May be you need to monitor the finish button (which has class name btn-finish) not the survey url. -
Maverick replied to the topic structuring SEF urls for polls .
September 5 at 5:14 pm
If you have setup the category menu items, your users will always looks like this: domain.com/top-category/sub-category/45-poll-alias But not domain.com/45-poll-alias So there must be something else wrong with the sh404sef configuration. Please send me your website admin details so that I can check it. -
Maverick replied to the topic 403 error while editing quiz.
September 2 at 7:46 pm
If the user has edit permissions given, he can edit the quiz. -
Maverick replied to the topic Add quizzes integrated inside articles.
September 2 at 7:45 pm
You can add quiz inside article using quizform module. https://docs.joomla.org/How_do_you_put_a_module_inside_an_article%3F -
Maverick replied to the topic Questions' category access permission problem.
September 1 at 9:34 pm
Access levels -> Allowed by Joomla as one of the access level can allow userPermission settings -> Not allowed as user has conflicting access on view permission. When showing categories both of the above checks are made. It is the same Joomla ACL manager which decides the access, the component do not calculates any permissions here. Hope this helps. -
Maverick replied to the topic Error at the end of the survey.
September 1 at 6:15 pm
Can you please let me know the survey url? -
Maverick replied to the topic Update Community Surveys Package 4.1.9 -> 4.2.1.
September 1 at 6:15 pm
It might be because your server could not download the file from amazon aws. Are you able to update other components? Can you please send me your website details using contact us form so that I can check what could be the issue? P.S. Meanwhile, please update it manually by downloading it from downloads section. -
Maverick replied to the topic Can't Change Styles.
September 1 at 6:07 pm
Front-end css file is available at media/com_communitysurveys/css/cj.surveys.min.css However if you want to add some custom css classes to question titles, please use the customize options available on your question edit page. -
Maverick liked a reply to the topic How to get Progress Bar working.
September 1 at 6:05 pm
-
Maverick said thank you to Matt Martel for his/her reply to the topic How to get Progress Bar working.
September 1 at 6:05 pm
This is a common problem. I have fixed my issue by using #cj-wrapper .progress-bar {height: 20px; background-color: #d97d3e;} in my template CSS override. That orange is one of our brand colors...use whatever. The real fix I would like to have is the animated progress bar that is supposed to load from the component CSS loaded from the media folder. It is being blocked on my site for some reason. -
Maverick replied to the topic How to get Progress Bar working.
September 1 at 6:05 pm
Thank you @Matt for the answer. Appreciate it. Yes, it is the right answer, you need to add the below css because your template's custom bootstrap css do not contain progress bar css. #cj-wrapper .progress-bar {height: 20px; background-color: #d97d3e;} -
Maverick replied to the topic EMAIL NOTIFICATIONS - NOT SUBMITTING.
September 1 at 6:01 pm
Go to Components->CjLib->Email Queue and check if the emails are queued or not. If yes, that means the cron is not triggered yet to send emails. You can setup automatic cronjob to get them triggered. By default it is manual, i.e. when someone visits front-end pages of quiz the emails will be sent. http://wiki.corejoomla.com/Setup_cronjob_to_trigger_emails_automatically The email do not include user answers. Rather link to reports. -
Maverick replied to the topic You are unauthorized....
September 1 at 5:57 pm
RC=101 means you do not have respond permission. You must give respond permission to the users to allow them to take survey. -
Maverick replied to the topic Community Surveys - validate responder.
August 31 at 5:22 pm
You can validate email address by importing users into a contact group and invite only them. They can take survey only by using unique url sent to them. However validating date of birth is not possible, you can have a field to ask users, their date of birth instead. -
Maverick replied to the topic Powered by CjBlog showing on all articles.
August 31 at 5:17 pm
In CjBlog v1, this is same as before. In CjBlog v2, you can change it in components/com_cjblog/layouts/default(or bootstrap3)/credits.php -
Maverick replied to the topic Assign rank based on points instead of number of posts?.
August 31 at 5:13 pm
Yes, change select topics + replies from #__cjforum_users where id = '.$user->id to select points from #__cjforum_users where id = '.$user->id The only other problem is this function will be called when the user created topic or replies or do somthing else on the cjforum. but you need to do similar function call everytime user is awarded points in Community Quiz. Community Quiz has different plugin which handles awarding points (plugins/communityquiz/quiz/quiz.php). You need to do similar db update in awardPoints function of that plugin also. -
Maverick replied to the topic Assign rank based on points instead of number of posts?.
August 31 at 5:57 am
Edit plugins/cjforum/topics/topics.php and modify assignRank() function. You will take num_posts value defined on the rank and use it as points instead of posts. -
Maverick replied to the topic Previous Button and Mandatory Questions.
August 30 at 7:05 pm
Previous button works the same way as next button, save questions and move back. So it must validate rules. Would you expect user selections lost when previous button is clicked? -
Maverick replied to the topic How to get Progress Bar working.
August 30 at 7:04 pm
Looks like the screenshot is missing. Can you post the survey url to check it?