You need to be logged in to post in the forum - Log In

An active JCE Pro Subscription is required to post in the forum - Buy a Subscription

Support is currently Online

Official support hours
Monday to Friday
09:00 - 17:00 Europe/London (BST)

#100214 JCE PRO 2.6.38 links plugin joomla 2.5 no menus

Posted in ‘Editor’
This is a public ticket

Everybody will be able to see its contents. Do not include usernames, passwords or any other sensitive information.

[email protected]

The problem is here: components/com_jce/editor/extensions/links/joomlalinks/menu.php line#240 [ approx, its in _types() ]

if (is_object($query)) {
//---------> FIX joomla 2.5 there is no client_id in #__menu_types table...so no menus appear
$version = new JVersion();
if($version->isCompatible('3.0')){
$query->select('*')->from('#__menu_types')->where('client_id = 0')->order('title');
} else {
$query->select('*')->from('#__menu_types')->order('title');
}
} else {
$query = 'SELECT * FROM #__menu_types ORDER By title';
}