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 joomla xml setup.
October 25 at 9:18 am
This is not a standard Joomla installer. you need to install it from EasySocial applications page. -
Maverick replied to the topic Guest submit and publish answers.
October 25 at 4:55 am
1. To moderate posts, allow "Moderate Questions" and "Moderate Answers" permissions. 2. Try this: Go to administrator questions listing page and click on refresh button. do same on categories page. -
Maverick replied to the topic Always redirect to url set when finished or canceled a survey.
October 24 at 1:40 pm
Can you explain little more detail? What sort of formatting lost? -
Maverick replied to the topic New version of CJBLOG .
October 24 at 10:12 am
https://www.corejoomla.com/downloads/cjblog.html -
Maverick replied to the topic New version of CJBLOG .
October 24 at 9:34 am
Please check CjBlog category in downloads section. -
Maverick replied to the topic How to Add more than one Column Function.
October 24 at 9:34 am
Please check in the CjBlog category in downloads section. -
Maverick replied to the topic can't save new poll.
October 24 at 5:15 am
Can you please send me your website details using contact us form to check it? -
Maverick replied to the topic Always redirect to url set when finished or canceled a survey.
October 24 at 4:36 am
I believe you are talking about surveys not polls. If yes, follow below procedure. Edit components/com_communitysurveys/views/response/tmpl/default_form.php and find <a class="btn" href="/<?php echo JRoute::_('index.php?option='.S_APP_NAME.'&view=survey'.$itemid)?>"><?php echo JText::_('LBL_CANCEL');?></a> change it to <?php if(!empty($this->item->redirect_url)):?> <a class="btn" href="/<?php echo UriHelper::parse_url($this->item->redirect_url);?>"><?php echo JText::_('LBL_CANCEL');?></a><?php else:?> <a class="btn" href="/<?php echo JRoute::_('index.php?option='.S_APP_NAME.'&view=survey'.$itemid)?>"><?php echo JText::_('LBL_CANCEL');?></a><?php endif;?> -
Maverick replied to the topic No buttons work on "Create A Poll".
October 24 at 4:10 am
Looks to be javascript issues. where can I see this? can you send me your website details using contact us form? -
Maverick replied to the topic EasySocial integration with community poll.
October 24 at 3:20 am
That's cool. You can use anywhere code to achieve this. 1. In your stream, insert anywhere code for example {CONTENTPOLL ["id": POLLID]}2. Now develop a plugin with the onPrepareStream event and parse this code Anyway, I will develop a new plugin to handle this. -
Maverick replied to the topic Can't add conditional rules.
October 23 at 2:07 pm
There are lot of changes made during last few days, so hopefully v4 is more stable than before and infact I am planning for final release this weekend. Can you please download the package once again and install it? You need to clear your browser and server cache. -
Maverick replied to the topic Cannot Insert Images into Description Field with JCE Editor.
October 21 at 3:16 am
That's because the JCE stylesheet is loading after cj.quiz.min.css. If your template support adding custom css code at the end of page (for example before </body> tag) please use it. Or add it in /modules/mod_communityquiz/assets/communityquiz.css which looks to be loading later. -
Maverick replied to the topic Quiz Creator Cannot view JCE editor on Frontend.
October 20 at 3:38 pm
Can you let me know what was the issue? Is it a bug? -
Maverick replied to the topic What is the best way to keep track of survey input..
October 20 at 3:37 pm
If you want to track guest user responses, two best possible ways are: 1. Create unique urls in manual invite page and send them using your email client. So you know whom you sent the url. 2. Add new textbox type question on first page of survey to get name of the user who is taking survey. Make it mandatory. -
Maverick replied to the topic Cannot Insert Images into Description Field with JCE Editor.
October 20 at 3:34 pm
Try to add this css in your template css file or in media/com_communityquiz/css/cj.quiz.min.css .ui-jce .ui-dialog {overflow: visible} -
Maverick replied to the topic Registered users can't create questions.
October 17 at 2:38 am
Make sure the following. 1. Your menu item 'ask-question' has access level no greater than your user group. Otherwise they cannot access it. 2. Go to Components - > Community Answers - > Click on Options button on the toolbar - > Permission Settings tab - > Allow create permission to your users. -
Maverick replied to the topic Not Authorized to View Resource.
October 16 at 5:33 pm
RC=10: This error comes when user who started the quiz is not same as who is continuing. My guess is by the time the user click on start button, either he is logged-in in another tab or his session automatically logged in by session cookie. P.S. I took your quiz as guest and see no issue like it. -
Maverick replied to the topic Radio buttons CSV Export.
October 16 at 5:31 pm
This is not a standard feature, what you see is what you get. So user select Yes, your report will have Yes. The component do not know what else value it needs to show. However manipulating these values is pretty easy using MS Excel. Just open your csv in excel and replace the column accordingly. -
Maverick replied to the topic cjblog featured articles view?.
October 15 at 11:14 pm
CjBlog v2 will be having this feature. Its already under dev. -
Maverick replied to the topic Quiz Creator Cannot view JCE editor on Frontend.
October 15 at 2:11 pm
Are you able to reproduce the issue? If yes, please let me know steps to do the same. Yes, account details will help.