How to create multiple module instances in joomla 1.5? - joomla

I have installed joomla module. It seems that I can only display the same module with the same configuration on any page.
How do you have this same module, with a different configuration on different page ? (I do not want to display the same rss feed under each joomla article)...
Is it possible to have multiple "instances" of a module ?
I have taken an rss feed module for example, but I could have taken any joomla module.
Thank you for your answer

Frd...its easy..
Pls follow my link:
Administrator--> Extensions--> module manager-->Select ur module(Which module u need)-->click new Button (in top right menu)-->here u got all module (select ur required module)--> now u can get it...!!! pls check it..!!

Modules can be assigned to specific menu items. In 1.5 you have the option to assign a module to All, Selected, or None menu items. Simple make multiple copies of the module you want to use then assign each version to the menu items you wish with the associated variations in configuration.

You can create multiple instances of a module through module manager in Admin side of your site. And different instances can have different configurations.

Related

Module assignment in joomla 3.0

How will we assign a particular module for particular page in joomla 3.0? I have no particular menu item for that page?I know that if i have a particular menu ,then assign that module to that particular menu item,but i dont have menu
This is not possible:
You cannot assign a module to a URL link. This is because URL links do not have Itemids assigned to them.
You cannot directly assign modules to pages that are only linked via
content (for example, a link from one article to another) or other,
non-menu modules (for example, a link to an article from a module),
because these also do not have Itemids. One work-around for this
problem is to have an unpublished menu that contains links to the
items you wish to link through non-menus. This will create an itemid
that can be included in the url you link to.
Source: Joomla Docs
In only case that this page is an article or a component that you could load content via plugin you could use loadposition / loadmodule method.
Here is the official documentantion how you could do that.
Hope this helps

Why isn't loadposition working to load a module within a custom HTML module in Joomla 3.2?

I am developing a website with Joomla 3.2. I want to put a search box inside a custom HTML module. I have the module loading plugin enabled, a module position defined for the search box ('searchbox'), created the module instance, assigned it to the correct position, enabled it, and made sure it was assigned to all pages.
Inside my custom HTML module I inserted the following:
{loadposition searchbox}
As you can see here - http://ojospa.webez.net/ - it isn't working (look in the upper right hand corner).
Why isn't it working? I've looked over everything to make sure there were no typos and everything looks fine.
Any help would be appreciated.
Thanks!
Cynthia
You need to enable the "Prepare Content" parameter in the options of the module. Then it should work.

Add a module to a component , but not every page of the component

i'm working on a joomla 1.5 for a university project (when it started 2.5 wasn't out :D). What i'm trying to do is to assign a module to my custom component , but not every page of it.
The 2 different pages of my component is a page that shows every product , but the other one needs an id to work. In order to assign the module just to a page i think i need to assign every page my component has to a menu item.
But my problem is that i don't know how to assign my page that shows a specific product the variable id to make it work.
The Joorthodox way, i guess, would be to control the module availability from the module manager in administator page, where you can assign it to certain pages/menu items only.
Thus summarizing, create a menu item type for that page assign it to a menu item which in turn will be your module control switch for that page.
Another approach could be a control directly to the joomla module renderer. An example can be found here: joomla-is-there-a-module-render-plugin-event
One method would be to set the module to be hidden on that page using CSS.
Go to views/view_name/tmpl/default.php and within the tags at the top, add the following code in:
$doc = JFactory::getDocument();
$doc->addStyleDeclaration(" #element_id { display: none; } ");
You will need to inspect the module using a tool such as Firebug, Chrome Dev Tools or another tool depending on which browser you're using, and change element_id to whatever suits your needs.
Hope this helps
Just use Advanced Module Manager and assign your module by URL's not just by the menu link, it works for me to hide and show a module inside the different pages of the same component

Change admin module title joomla

When I installed the module that I developed and in the module manager screen of the backend I can see the title like this.
Module Manager: Module mod_examplemodule
So I want to change it into something like this. Module Manager: Module Example Module
I have developed few Joomla modules but so far I didn't realize how to do this.
Your help on this would really appreciated.
Thank you.
Im using Joomla 2.5.8. I have just added the screen shot. Perhaps it would be more helpful.
In my modules I use:
<name>Module Title</name>
<description>MOD_MODULE_TITLE_XML_DESCRIPTION</description>
I then add an entry in the language file for the description. This normally covers my needs
I have solved this:
You can change name tag in mod_examplemodule.xml file and install again
OR
If you have database access then in [prefix]_modules table find the record of this module and change the name field as per your requirement

How to add a menu to login form module in Joomla 1.7?

I am intrested in changing the joomla default Login module to show a menu as a greeting in the login module,
so that menu will contain links for profile management and stuff from that sort.
I have tried to add a module position inside the module (dawg!)
But that went down the drain.
And i'm not intrested in adding manual links to pages because they might change.
Any ideas guys?
Thanks in advance,
Eric
put this code in login module template where you want to show the menu
$module = JModuleHelper::getModules('xxxx');
// xxxx is any virtual position, no need to create it anywhere.
echo JModuleHelper::renderModule($module[0]);
and enable a menu module at position 'xxxx'.
I hope this will work.
You are going to have to create a custom module to do that. There is no way to do it with the parameters you have given. You could use the module alternative layout to add in some links to the login module, but you can't add a menu to it without rewriting the entire module.

Resources