joomla3.0 Questions
3
Solved
I have the following code:
$db = JFactory::getDbo();
$query = $db->getQuery(true);
$query->select('*');
$query->from('#__users');
$db->setQuery($query);
// Check for a database...
3
2
I have a custom joomla 2.5 template and I wish to convert it to Joomla 3.0. Currently the only method I found is how to convert a Joomla 1.5 to 2.5. Please guide me here because I have spent almost...
2
Solved
When registering a new Joomla user, an email is sent to the new users email address containing the username and password. Does anyone know how to disable this functionality, so that new users does ...
3
Solved
I found on this thread : get active menu item title how to get the title of active menu item :
$menu = &Jsite::getMenu();
$menuname = $menu->getActive()->title;
but how can I get his p...
1
Solved
I am migrating my Joomla 2.5 site to Joomla 3.3.
Now I'm struggling with loading the joomla framework and displaying a module in a phpbb-Template.
Loading the Joomla framework worked fine in Jooml...
3
I'm developing a new template using Joomla 3.0 with the Gantry framework and I'm running into an issue with my Font Awesome icons not displaying. Now, this framework has Font Awesome already built ...
Collinsia asked 2/7, 2013 at 14:8
1
Solved
I'm writing a Joomla! module in which I need to display current article title.
I've got this code found somewhere here on a stackoverflow:
<?php
$option = JRequest::getCmd('option');
$view = J...
Scherzando asked 27/2, 2014 at 13:33
3
Solved
Update:
Since this question was asked Joomla StackExchange has been setup and the same questions exists there please add any answers or comments to that question
Original:
I am using Joomla 3.0....
Acrodont asked 22/2, 2013 at 23:30
1
Solved
I'm trying to get to grips with the power behind Joomla (3.x)'s framework.
I've noticed that there are multiple types of model that can be used in a component:
JModelAdmin
Prototype admin model. A...
Beabeach asked 11/2, 2014 at 14:23
2
Solved
I'm building a custom component and I just want to get a value from the global config in my controller. I can't find any information about how to do this.
Something like...
$config = JFactory::ge...
1
Solved
I m trying to make json response for android application.
Here is the code
$document =& JFactory::getDocument();
$document->setMimeEncoding('application/json');
$document->setCharset('u...
3
Solved
In Joomla 3.x jQuery is coming by default with Joomla, but the version is a bit outdated (v.1.8.3) and I have a script that needs a newer version.
What can I do?
4
Solved
I have been a Joomla developer for almost an year now. I have been struggling to import jQuery into joomla everyday. Joomla comes with mootools. When I import jQuery it crashes. Also when I create ...
1
Solved
How can I use cookies in a Joomla component?
setcookie( JUtility::getHash('JLOGIN_REMEMBER'), false, time() - 86400, '/' );
Can anybody describe how this works?
4
Solved
I'm adapting a custom component to Joomla 3. It relies on jQuery, which I previously loaded in myself. Now that it's included in the base template, I don't need to. However, my custom javascript th...
Airlift asked 25/10, 2012 at 22:36
2
Solved
So I decided to see what the new Joomla! MVC brings. Because I am a learning by doing kind of guy I started building a native Joomla! 3.x component, I mean without using the legacy classes in a rea...
2
Solved
I'm trying to insert an additional button in Joomla's article editor. It's using the default TinyMCE plug in Extended mode. As you'll already know there are 4 buttons underneath the editor (Article...
Buffon asked 6/12, 2012 at 12:22
2
Solved
Ok, so one of my websites ( on joomla) is being hacked like the 6th time...
I won't tell you any stories. Only facts:
Firstly, I found that in template index file appeared some alien code:
...
1
Solved
Since the release of Joomla 3.0 Alpha last night, I wanted to try my hand at starting to convert the Joomla 2.5 component I have written to the new Joomla 3.0. I have been following all of the deve...
Cursive asked 13/7, 2012 at 16:19
© 2022 - 2024 — McMap. All rights reserved.