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 error after upgraded to latest version.
April 20 at 4:51 pm
1. Please disable bootstrap css in Community Answers options (integration tab) -
Maverick replied to the topic Random Poll instead of Latest Poll.
April 20 at 4:48 pm
Did you choose specific poll ids? in such case it choses random order. Will fix this. -
Maverick replied to the topic Advanced Search not working.
April 20 at 4:46 pm
Yes, looks like I have mixed the code in bootstrap3 layout, sorry. components/com_communitypolls/layouts/bootstrap3/search_form.php <a href="/<?php echo JRoute::_('index.php?option=com_communityquiz&view=search');?>"> should be <a href="/<?php echo JRoute::_('index.php?option=com_communitypolls&view=search');?>"> -
Maverick replied to the topic Embedding does not work in chrome/edge.
April 20 at 4:42 pm
Can I see the page where this code published? -
Maverick replied to the topic Error Code 105106-ADM.
April 19 at 6:19 pm
What is the version of component you are using? Did you upgraded/downgraded the component? -
Maverick replied to the topic Error Code 105106-ADM.
April 19 at 5:56 pm
Duplicate topic: https://www.corejoomla.com/forum/support/community-polls/15633-error-code105106.html -
Maverick replied to the topic error after upgraded to latest version.
April 19 at 5:55 pm
How you are changing settings of the component? in Options? You need to be super admin. -
Maverick replied to the topic Urgent - PHP7 Bug.
April 19 at 5:54 pm
So that plugin overwrites the geoip functions of CjLib. That should be disabled. -
Maverick replied to the topic error after upgraded to latest version.
April 19 at 5:56 am
Did you changed the mennu items to new menu item types? e.g. Questions Listing, Category etc. -
Maverick replied to the topic Category Drop Down missing.
April 18 at 1:39 pm
Please make sure you have latest version of CjLib component installed. -
Maverick replied to the topic where is the category?.
April 18 at 1:39 pm
Are you logged in as super admin? -
Maverick replied to the topic BUG: Wrong breadcrumb on edit question and edit reply.
April 18 at 5:56 am
Can I have your page details to see the issue? (use contact us form to send login details) -
Maverick replied to the topic BUG: Wrong breadcrumb on edit question and edit reply.
April 17 at 8:52 pm
You cannot link to current page as edit page should not be accessed directly. So the last breadcrumb will links to menu item title (or answers listing page) but not homepage. At least this is the case with Joomla standard breadcrumbs module. -
Maverick replied to the topic BUG: Publishing Tab visible on edit reply, even if publishing option disabled.
April 17 at 8:48 pm
Thank you. Just a small correction. $showPublishingOptions = $editoroptions && $params->show_publishing_options; This should be added above the code. -
Maverick liked the topic BUG: Publishing Tab visible on edit reply, even if publishing option disabled.
April 17 at 8:46 pm
com_communityanswers > views > replyform > tmpl > edit.php 1. Tabs replace <ul class="nav nav-tabs"> <li class="active"><a href="#editor" data-toggle="tab"><?php echo JText::_('COM_COMMUNITYANSWERS_POST_REPLY') ?></a></li> <li><a href="#publishing" data-toggle="tab"><?php echo JText::_('COM_COMMUNITYANSWERS_PUBLISHING') ?></a></li> </ul> with <ul class="nav nav-tabs"> <li class="active"><a href="#editor" data-toggle="tab"><?php echo JText::_('COM_COMMUNITYANSWERS_POST_REPLY') ?></a></li> <?php if($showPublishingOptions):?> <li><a href="#publishing" data-toggle="tab"><?php echo JText::_('COM_COMMUNITYANSWERS_PUBLISHING') ?></a></li> <?php endif;?></ul> 2. Content replace <div class="tab-pane" id="publishing"> with <?php if($showPublishingOptions):?> <div class="tab-pane" id="publishing"> 3. Content replace <input type="hidden" name="task" value="" /> with <?php endif;?> <input type="hidden" name="task" value="" /> Green lines are inserted. Best regards, Jürgen -
Maverick replied to the topic Bug: Mixed Usernames and Names.
April 17 at 2:16 pm
Got it. Line 76 of components/com_communityanswers/views/users/tmpl/default.php <a href="/<?php echo $profileUrl;?>"><?php echo $this->escape($item->name);?></a> should be <a href="/<?php echo $profileUrl;?>"><?php echo $author;?></a> -
Maverick replied to the topic Bug: Mixed Usernames and Names.
April 17 at 1:00 pm
It works fine on demo site. Is there any template override for leaderboard? -
Maverick replied to the topic Bug: Mixed Usernames and Names.
April 16 at 4:54 pm
These issues are fixed in v4.3.2 release. -
Maverick replied to the topic Edit and delete links: How to get them work correctly?.
April 16 at 4:54 pm
I am sorry, it is not possible to list such changes, it is too timetaking and not so useful option for many users. If you want, you can compare your existing package with the new package using tools such as WinMerge. -
Maverick replied to the topic don't show the number of quizzes in the categories list page.
April 16 at 7:57 am
This is categories listing page. When you view the quizzes listing page, you should see the categories list on top of quizzes which has this number (just like you see on demo page).