Creating a Menu Item for your Joomla 3 Component Updated on January 23, 2024 by Brad Markle 1 Minutes, 11 Seconds to Read So far in this Joomla tutorial series we’ve been testing our new component by visiting our Joomla site and adding index.php?option=com_helloworld to the url, as in: https://example.com/index.php?option=com_helloworld In this tutorial, we will show you how to create a menu item for your component. This will allow you to add a link to your menu that points to your component with a URL similar to: https://example.com/hello-world To create a menu item: Decide which view. Components can have multiple views. Decide on which view you want to create a menu item for. Go to tmpl folder. Navigate to the tmpl folder of the view you chose in step 1. Create default.xml. Create a default.xml file in the tmpl folder with the following text: <?xml version="1.0" encoding="utf-8"?> <metadata> <layout title="Title"> <message>message</message> </layout> </metadata> When going through the process of creating a menu item, the Title and message in the code above will be shown in the listing of item types (as in the screenshot to the right): Testing our new menu item The whole process thus far of creating a new menu item for our component has been actually quite easy. If everything’s not “clicking” yet for you, review the following screenshot (hopefully it’ll tie everything together). Share this Article Related Articles How to Use the Free Mini Frontpage Extension for Joomla 4.0 How to Change a Joomla 2.5 User’s Email Address How to Configure Joomla 2.5 to Send Email Using SMTP How to Edit a Joomla 3 Template How to install Phoca Gallery for Joomla 2.5 Creating a Menu Item for your Joomla 3 Component Changing Email Settings in Joomla 3.1 Using the Redirect Manager in Joomla 3.1 How to add Bootstrap to a Joomla 3.1 Template How to Use Bootstrap 5.0 Alerts in Joomla 4.0