Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?

ARI Ext Menu: HOW: Items greyed out, no hyperlink.
(1 viewing) (1) Guest
Go to bottomPage: 123
TOPIC: ARI Ext Menu: HOW: Items greyed out, no hyperlink.
#40742
Re:ARI Ext Menu: HOW: Items greyed out, no hyperlink. 11 Years ago Karma: 0
So that's something a standard user like me can't solve, even if following your instructions?
The administrator has disabled public write access.
 
#40749
Re:ARI Ext Menu: HOW: Items greyed out, no hyperlink. 11 Years ago Karma: 748
Open <joomla_directory>\modules\mod_ariextmenu\tmpl\menu.php file and remove or comment the following code:

Code:


if (($menuItem->type == 'separator' && !$hasChilds)) 
continue;



Regards,
ARI Soft
The administrator has disabled public write access.
 
#40750
Re:ARI Ext Menu: HOW: Items greyed out, no hyperlink. 11 Years ago Karma: 0
Commented that code. Yes, it worked, the item is not usable. But you still can't notice it visually, how can i select those kind of menu itens and costumize their "appearance"?
Make them greyed out or some other color.

Argh, sorry for being such a bother!
The administrator has disabled public write access.
 
#40751
Re:ARI Ext Menu: HOW: Items greyed out, no hyperlink. 11 Years ago Karma: 748
For example you can modify menu.php template file and add a specific CSS class for "separator" menu items.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#40752
Re:ARI Ext Menu: HOW: Items greyed out, no hyperlink. 11 Years ago Karma: 0
I don't know how, sorry... xD

i was trying something like this...
.separator {
color:blue;
}
Could you specify?
The administrator has disabled public write access.
 
#40759
Re:ARI Ext Menu: HOW: Items greyed out, no hyperlink. 11 Years ago Karma: 748
Find the following code in menu.php file:

Code:


$aClass = ' ux-menu-link-level-' . $menuAbsLevel;



and add the following code after this code:

Code:


if ($menuItem->type == 'separator') $aClass .= ' separator';



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 123