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
0
votes
1 answer

joomla modules is showing on every pages with associated with them

I am working on Joomla from last 6 yrs. I never get any problems with Joomla. This is the 1st time i am facing Problem with it. I made a website http://seoinlowcost.com/test/ I am not using module on every page but it's showing on all the pages.…
ajay deb
  • 7
  • 1
0
votes
0 answers

Joomla 2.5 mod_articles_popular by category

I got mod_articles_popular and I restricted it so it shows only articles that are younger than 30 days, but I cant force it to show articles from category that user is in. Anyone got idea how to do it? modules/mod_articles_popular/helper.php …
0
votes
1 answer

Joomla 3 modules in blog.php override

I have created an override for blog.php in my joomla template and I want to add some of joomla's default blog modules into a sidebar I've added the code to my file
user894932
0
votes
0 answers

Share module image on facebook in joomla

I tried to share an image which in my custom module on facebook. This is the code of the module
anuruddhika
  • 1,549
  • 8
  • 26
  • 40
0
votes
1 answer

Joomla logged in user menu

I am working on a project in joomla3. It is an event organizer website having frontend (website,template) and back-end (joomla). Joomla has in built login module. It also has Main Menu and User Menu. The items in Main Menu are : Home About…
Viraj Doshi
  • 71
  • 1
  • 7
0
votes
1 answer

Edit PHP file for Joomla 2.5 Module K2 Content

I'm trying to edit the K2 content module by changing the file: /modules/mod_k2_content/tmpl/Default/default.php Basically I need a div to wrap around: Somewhere near line 128. But when I change the file nothing is…
user882670
0
votes
1 answer

how to Load contact form on top of a google map?

I want to create contact page in mysite(joomla). so i got map embedded code and add it to page as a module. now i want to add contact form on top of that map. map like as background and contact form on that background. map load as iframe. i can not…
anuruddhika
  • 1,549
  • 8
  • 26
  • 40
0
votes
1 answer

Using variables in custom joomla module for tooltips

I'm new to joomla development, but I can't seem to figure out how to dynamically fetch descriptions to be displayed as tool tips for the form data of a module backend. I'm looking at an example module from joomlart and their code for a single field…
0
votes
0 answers

Getting last updated time of module in Joomla

I have written a simple Joomla! 3.x module to provide a notice to users for a site, but as part of the notice I want to display the "last Updated" details - so they can see when the information in the module was last updated. Is this information…
FireEnigmaX
  • 567
  • 2
  • 7
  • 17
0
votes
1 answer

Cannot set selected elements for the list module on Joomla Fabrik extension

I am using free version of Fabrik extension on Joomla. Both my Joomla and Fabrik are the latest version I have already done with the Fabrik structure part such as create the form, elements, group, list, and set the form order, validations,…
0
votes
0 answers

how to optimize images when uploading in media manager for joomla 3?

when i upload 4MB images into media manager it takes the image full size with out optimize which makes my site to load long time, how to reduce image size automatically when uploading file images like in wordpress which optimize automatically.
user3073170
  • 25
  • 1
  • 3
0
votes
1 answer

Joomla: ZOOfilter module layout is empty?

I'm using Joomla 3.2.3 and for commerce purpose, I've installed the ZOO package and all of its apps. Now, I've a page displaying Items of a Category. I needed a filter in this page and thus installed ZOOfilter Module for it. I've filled all the…
0
votes
1 answer

Joomla get Input from Form Field

i have a problem with my joomla module i want to access the value of this field:
Philip Scheer
  • 241
  • 1
  • 2
  • 12
0
votes
2 answers

Joomla module development: How to use template and alternative layouts?

In my custom module, my themes are structured like this: /modules/mod_ab_art/tmpl/default/default.php /modules/mod_ab_art/tmpl/arz/default.php I have an option for the user to select a theme from the admin section like this:
user1448031
  • 2,172
  • 11
  • 44
  • 89
0
votes
1 answer

Joomla extension development: How to get global params when retrieiving articles from the database?

In my extension, I've retrieved articles from the content table like this: ....... ....... $db = JFactory::getDBO(); $query = $db->getQuery(true); $query->select('id, catid, title, introtext,…
user1448031
  • 2,172
  • 11
  • 44
  • 89