Questions tagged [joomla-module]

A Joomla module is an extension that offers certain functionality to a site, that is not supposed to serve as main content, and is usually placed around component code.

The Joomla module tag, would be useful for questions related to Joomla module development. As mentioned by the official Joomla Module documentation, the easiest extension to create is probably a module, which can be as simple as printing the current date and time.

Despite being small and websites can work without modules, Joomla has allowed very important functionalities to be handled by modules, like Menus (mod_mainmenu), Search (mod_search), and even Custom HTML modules (mod_custom) that allow direct HTML input for the unexperienced to write their own HTML in their sites.

To include a module inside an article, Joomla offers a default plugin to do this, but you have to include a full module position. Example code is: {loadposition: module_pos} where module_pos is the module position that you want to include.
Please note that you can add custom module positions, just by writing the desired position name in the position field of the module, instead of selecting from the existing list.

For more information on how to create Joomla modules, please read here.

157 questions
1
vote
0 answers

Creating a progress bar using Canvas

I've used Canvas to create a progress bar that takes a slider value and fills in the progress. This uses an overlay image to create the fill. My code is listed below. I'm running into a problem, though, because I don't want the progress bar to use a…
1
vote
0 answers

Keyword Sensitive Joomla Banners

I'm trying to enable keyword sensitive in Joomla 3.2 banners. I turned on search by tag in banner's module. I also added the same tag to banner and article but it doesn't seem to work. I read a lot of tutorials…
milu
  • 51
  • 4
1
vote
4 answers

Joomla extension install from URL error: Archive does not exist

I am trying to install a package from URL into my local server and I am getting this error: Error Archive does not exist Warning JFolder: :files: Path is not a folder. Path: C:\xampp\htdocs\Joomla\tmp\install_53170ad5161e0 JFolder: :folder: Path is…
user1448031
  • 2,172
  • 11
  • 44
  • 89
1
vote
1 answer

Fatal error: Call to undefined method ModulesHelper::getActions()

When I create new module using Roksproket, I get: Fatal error: Call to undefined method ModulesHelper::getActions() in C:\xampp\htdocs\pgocaribbeantv\administrator\components\com_roksprocket\views\module\view.html.php on line 139 What might the…
1
vote
1 answer

Joomla 3.0—get module id inside custom form

I have created Joomla module and added a custom field type at the parameter configuration in the backend, using the .xml file like this:
philipp
  • 15,947
  • 15
  • 61
  • 106
1
vote
1 answer

PhpStorm and Intellij: Joomla Template and Module Development

I am developing Joomla 2.5 templates and modules with Intellij 13 (which should contain all features of PhpStorm as well). If I just create a new project and set the content root to /var/www/joomla then I have the complete Joomla directory in…
lanoxx
  • 12,249
  • 13
  • 87
  • 142
1
vote
1 answer

Joomla 3 Module Alternative Layout appears in dropdown but won't apply to module

I downloaded and installed a module called rQuotes which I'm trying to tweak using an alternative layout. At first I just copied over the default.php to a appropriate folder mod_rquotes under html in my template directory, changed it's name to…
Dylan Glockler
  • 1,115
  • 1
  • 20
  • 40
1
vote
2 answers

Joomla Module Add Dynamic Items

I was searching over SO long time, but couldnt find the answer: I'm creating a Joomla 2.5 module, is a kind of portfolio. I dont know, how many item will be finally in the module, 40 or 200, and it can still grow. Is there any way, to add the module…
1
vote
1 answer

How can i change playlist title width in joomla's Jwplayer module?

When i setting jwplayer width not enough, the playerlist title can't fully display. how can i change the title width? Thanks a lot
1
vote
1 answer

php Cannot redeclare class / Undefined variable Joomla Module

I am experimenting with OOP yet, I am very new to it so, I have created a module for joomla 2.5.x and inside it's main php file I require_once a file with a class like…
durduvakis
  • 189
  • 4
  • 16
1
vote
2 answers

add custom module position inside HEAD on joomla

I'm using a script module plugin that allow you to add scripts to a module in joomla, however I need this module to be inside the HEAD tag so I can place the scripts on the correct place. Is there a way to create a custom module position inside of…
dan
  • 13
  • 3
1
vote
2 answers

Joomla 1.7 popup extension to load module inside

Please let me know, if there any extensions available to display module inside the popup, and popup should load after user login. Scernario : I have opinion poll module, which should popup once after user login into the website. I need to specify…
Dinesh Nk
  • 89
  • 9
1
vote
1 answer

href mailto not working in Joomla 2.5 module

I'm setting up a new Joomla 2.5 web, and I've find this problem. When I use a mailto link in an article, everything works as it expected, but if I do the same in a module, javascript code replace the email. Some sample source output:
voodmania
  • 73
  • 8
1
vote
0 answers

joomla 2.5 module override not working

I'm working for a government school and I'm trying to override the 'Latest News' module in my template. I've created the following structure in my template folder: template_name\html\mod_articles_latest\default.php Locally it works well, overrides…
1
vote
1 answer

How to get data from another table in joomla 1.5 module?

currently I have component module, which I'd like to add some data from another table. This is my current helper.php code:
1 2
3
10 11