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
8
votes
4 answers

How to create a custom form field type in a module?

Im useing joomla 2.5, and I want to create a custom form field type that stored in the same module. In the XML:
Mansour Alnasser
  • 4,446
  • 5
  • 40
  • 51
6
votes
1 answer

Access Joomla 3.2 article title from the module displayed alongside

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:
zorza
  • 2,814
  • 3
  • 27
  • 41
6
votes
3 answers

What are possible fields' filters in Joomla module parameters?

I am looking for possible filters' list when adding parameters' field for a module settings. I know that filter="raw" and filter="integer" exists from examples at Text form field type. But what are other possible filters for these fields?
Lukas Greblikas
  • 649
  • 6
  • 14
6
votes
5 answers

Putting AJAX in a Joomla Module

I've made a basic Joomla module for my site as a shoutbox. But I'd like to put AJAX in it (I know a similar module with AJAX already exists on JED but this more a project for me to learn how AJAX works in a Joomla module). The usual AJAX stuff where…
George Wilson
  • 5,595
  • 5
  • 29
  • 42
2
votes
4 answers

Find Joomla module name in a Joomla website

My Joomla web page has some content that I want to remove (placed in only one page). It was placed using a module, but my site has large number of modules and I can't find which module it is. Is there any way to find module by filtering the page…
Preshan Pradeepa
  • 698
  • 14
  • 31
2
votes
3 answers

image not resizing in twitter bootstrap responsive page design

I have a web page which is designed using twitter bootstrap along with it's responsive css inclusion to make everything responsive on different window sizes.But the image in the following codes not re-sizing itself when browser resized, so is not…
developer
  • 78
  • 1
  • 13
2
votes
3 answers

Render module in joomla

How do we render module in joomla with the title. Because now, I am able to render the module based on the position but it does not include the module title. Here's how I render the…
user2767055
  • 49
  • 1
  • 2
  • 7
2
votes
3 answers

Joomla module install.sql not executing

I have the following file install.sql in my site module's /sql folder. And I'm referencing it from my module's .xml file like so:
Anriëtte Myburgh
  • 13,347
  • 11
  • 51
  • 72
2
votes
2 answers

Joomla2.5.14 Server Side Validation for Login Page

I am using Joomla2.5.14 and I want to add some more server side validation like: a) Please enter your email address. (Outline email address box in red). b) Your email address is not registered with Us. (Outline email address box in red). c) Your…
lumos
  • 745
  • 2
  • 11
  • 22
2
votes
1 answer

How to call the testimonial component into a custom module in joomla 2.5?

I am using one page website, i want shown all requirements in a one page.. Now all requirements are done except the Testimonial component part. I am using RSMonials Testimonial component. This component i want to show in the frond page, i used the…
Vetrivel
  • 56
  • 4
2
votes
1 answer

Joomla RTL support for module

I am trying to support RTL for my Joomla module. I was wondering if there is any Joomla class that can determine if RTL language is currently in use such as: $lang = JFactory::getLanguage(); if ($lang->isRTL()) { //do something here } I have…
Lodder
  • 19,758
  • 10
  • 59
  • 100
2
votes
2 answers

How do you get the File Upload Module Param (Form Field) to work in Joomla 2.5 (backend)

Friends, I'm trying to get the File Upload form field to work on Joomla 2.5(.11). For some reason I can't get the file to upload. As soon as I click "Save", the file upload field says "No file chosen", again. I've searched the docs and…
Jaime
  • 679
  • 1
  • 6
  • 12
2
votes
2 answers

No automatic line-break in textarea in Joomla Backend

I'm writing a Module for Joomla! 2.5. In my Backend I've got a textarea, in which values should be written line by line. If the value is to big the line breaks and it looks really confusing and chaotic. In normal html I would add a wrap="off" to the…
Freakwave
  • 144
  • 1
  • 7
2
votes
2 answers

Joomla module or component to be render on a blank page

I have developed a Joomla module that does provides a form, processes its post data, does some calculations and displays the results. The module includes a button to print the results. I'm currently using JavaScript to open a new window, paste the…
chiccodoro
  • 14,407
  • 19
  • 87
  • 130
1
vote
2 answers

Make read more link open on separate page in joomla

I am using joomla 2.5. When creating an article I add read more links to it. The issue I am having is, when a page has a single article then the read more link overwrites that content with the new article. I want the read more link to open as a…
tmjam
  • 1,029
  • 2
  • 12
  • 25
1
2 3
10 11