user1876234
user1876234

Reputation: 857

Change name of component menu

I'd like to change the name of my component menu item. I took a screenshot, this is the place where i want a different name for my component.

Menu

Upvotes: 0

Views: 404

Answers (1)

Toretto
Toretto

Reputation: 4711

To adding menu item for your custom component you can follow this link to add custom component menu item. Here the link:

http://docs.joomla.org/J2.5:Developing_a_MVC_Component/Adding_a_menu_type_to_the_site_part

In the default.xml file

<?xml version="1.0" encoding="utf-8"?>
<metadata>
        <layout title="COM_HELLOWORLD_HELLOWORLD_VIEW_DEFAULT_TITLE"> <--The title which you defined in component language file will be shown here or Simply you can directly put name in the title-->
                <message>
                        <![CDATA[COM_HELLOWORLD_HELLOWORLD_VIEW_DEFAULT_DESC]]>
                </message>
        </layout>
</metadata>

Hope this will help you.

Upvotes: 2

Related Questions