How to hide Home menu item Joomla 3.x? - joomla

How can I hide the "Home" menu item Joomla 3.x? Home page must be Default Page and accessible by clicking on site-icon in header.

You can create a new menu, call it hidden (or whatever) to indicate it is not displayed, and add your home menu item to this menu. Then, in administrator->modules simply make sure this menu module is not displayed.

Second way to solve it:
.nav-collapse > .menu > li:first-child
{
display: none;
}

Related

bootstrap navbar open on first click and go to link on second click

I'm using the bootstrap 3 navbar with drop down. Default is behaviour is on click open dropdown and on second click close. I want to visit the link on second click. Is that posible whith default bootstap functionality>
Try this:
$('.dropdown').on('show.bs.dropdown', function () {
$(this).siblings('.open').removeClass('open').find('a.dropdown-toggle').attr('data-toggle', 'dropdown');
$(this).find('a.dropdown-toggle').removeAttr('data-toggle');
});
This will toggle the dropdown open on the first click, while closing any other open dropdowns. If you click the parent of the open dropdown menu again it will navigate to it's href. If you toggle a different dropdown it will "reset" any dropdowns that were open so that you can re-toggle them again.

Joomla 3 Show Title issue. Hide page-header

I turned Show Title option for articles to Hide in global settings. So it works for each my page good instead of home page. So the title is still appear, even if I switched it to hide in article that correspond to Home page content.
I suppose maybe something wrong with menu.
So I have next menu:
Home
Photos
Contacts
Each menu content single article, but only Home shows title...
I am using joomla 3
on the screenshot below Home header that I don't need.
on the screenshot below Videos header that set as Show tile in menu item
on the screenshot below Videos header that set as Hide tile in menu item
I am making the same for Home but it does not work the Home tile is still visible.
I tapped on menu items then on home items which is single article:
then I modify visibility options:
save and close - and then update the index page in browser, but nothing happen the header Home is still on the page (
The solution is next:
Click on the “Menus” menu and select “Main Menu”.
Click on the menu item that represents your home page (usually “Home” or something similar)
On the right side, click on “Page Display Options”
Set “Show Page Heading” to “No”
Click on “Save”
http://www.celticwolf.com/blog/2012/09/06/how-to-hide-the-page-heading-in-joomla-2-5/
You have an option to show or hide the title of Articles and also Menus. Usualy is "Home" also the dafault "Frontpage" of the site, having the option to show the title.
Go to Menus -> Default "Home" Menu and under options you should have Show Title and hide it.
This should work, i tested it right now on my page to be sure.
Regards
in joomla 3.x it will be possible by combination of backend settings and source code change.
Login to your joomla control panel.
Go to Global\Articles and turn the "Show Title" and "Article info Title" to Hide.
Go to Global\Menus and turn the "Show Page Heading" to Hide.
Login to your host and go to your public html directory then go to "\templates**[your template]**\html\com_content\article" directory.
open default.php in editor and find
php if $this->params->get('show_page_heading', 1) :
and change the 1 to 0 then save it.
I suggest you to backup default.php file before any changes.
You can disable the Page Heading in the Menu Item options as showed below in my screenshot:
if this don't work, try to go to MENUS - MANAGE - (press the button OPTIONS to the right of the page)
In browser page title press one space , the set the second voice to NO:
Then save and press the REBUILD button.
This happens when you have a multi language site. The "Show Page Heading" option inside the languages home menu doesn´t works at all in this case. It is overrided by the Main Menu home options (that one without any languages assigned to it, that is mandatory in Joomla).
So if you change the "Show Page Heading" option inside the Main Menu home options, it will work.
Bizarre. But, it´s the way that Joomla 3 works.

can i avoid to show home page slider for individual event by joomla event module?

i've uploaded a joomla (version 1.5.26) site: http://srajib.info/s2l/
when i click any particular event (Right side), it also shows home slider:
http://srajib.info/s2l/index.php?option=com_jevents&task=icalrepeat.detail&evid=3&Itemid=1&year=2013&month=09&day=07&title=long-jump-event&uid=07390f799fedccea98b8ed46532fa4cb&catids=1
if i click any date of calendar (Right side), it also shows home page slider.
how can i avoid to show home slider both cases?
Try this:
Go to your Module Manager
Identify your frontpage slider module, and click on its name
In the Menu assigments section click the Select Menu Item(s) from the List option
From the list below it you can select the pages/menu items that you wish the module to be displayed on. Make sure to deselect the Events and Calendar menu items.
Click the Save icon in the top toolbar.

Top Menu Alias Item for Kunema Forum Not Active on click

I have just installed Joomla version 2.5.9 and also the Kunema forum component version 2.0.4. I haven't installed any other components/modules/plugins.
I created a new top menu item called "Forum Sports" as a "Menu Alias Item" and pointed it to the Kunema Menu's "Forum" item (please see image below).
However, in the site when I click in the "Forum Sports" top menu item, it doesn't get active If I point this menu item to any other menu/article/page, the menu item gets active (please see images below).
How can I make the top menu item "Forum Sports" active when pointing to the Kunema Menu's Forum item?
The reason is Joomla assigns two different classes to menu items. If you're on the menu item page it will assign an .active and .current css class. Most templates (including Joomla's) menu items then base their styling on the .current class. To make the menu appear active just add in some extra css for the .current class into your templates css file :)

Setup a startpage without a correspondig menuitem in Joomla

In Joomla 1.5 I would like to have a startpage (that has its own template) but there should be no corresponding menuitem "startpage". If the user wants to navigate to the startpage the only way he can do that is by clicking on the logo in the header. How can I achieve this in joomla? Currently it seems that I am forced to select a menuitem as the "default" menu item to define that this menuitem will be used as the starting point. But it also seems that I can not hide that particular menu item. Also I am not quite sure how to setup a common header that when clicking on it naviagtes to the startpage.
Create a menu that you do not display (perhaps hiddenmenu in addition to mainmenu), then place the default menu item there. You do not have to display every (or any) of the menus you create in Joomla. As for the logo, creating a link to '/' should work if your site is at the domain level.

Resources