Warning

More
7 years 10 months ago #3968 by dleboutte
dleboutte created the topic: Warning
Hi
I have two warning in conjunction with the tag of my article.
what should I do?
best regards
Attachments:

Please Log in or Create an account to join the conversation.

More
7 years 10 months ago #3969 by alex.froger
alex.froger replied the topic: Warning
Hello,

Really sorry for the delay and thank you for your feedback.
It is possible for you to give us more information about your problem with screenshot especially.
More details you can give us, sooner we can respond.

Also,
- Can you give us more information about your configuration ? (computer configuration, navigator used and it's version, ...)
- What version of Joomla do you use?
- When your problem does appear, backoffice or frontoffice?

Regards,
NGE TEAM

Please Log in or Create an account to join the conversation.

More
7 years 10 months ago - 7 years 10 months ago #3975 by dleboutte
dleboutte replied the topic: Warning
Hi
The problem is on the front office.
This is the latest version of Joomla 3.5.1.
The warning is displayed when there are tags to an item and you click on it.
www.dleboutte.be/index.php/component/tags/tag/5-tutoriel
bets regards
Last Edit: 7 years 10 months ago by dleboutte. Reason: Modif

Please Log in or Create an account to join the conversation.

More
7 years 10 months ago #3985 by jmbouille
jmbouille replied the topic: Warning
Hi,
the problem occurs in the tag view, when you are logged as administrator, and the listed articles contains some NGE widgets.

the problem has been fixed and will be corrected in the next release.

You can fix it youself, changing some code in the file : components/com_nge/helpers/ngecontenthelper.php
You have to add
if (gettype($params) == 'object'){
before line 169
and
}
after line 176

BEFORE ***********************************
if ($medium == 'document.page')
$params->rendering_mode = "edit";//Part can be edited
else{
if ($frontEditing && $canModifyPart)
$params->rendering_mode = "edit";//Part can be edited
else
$params->rendering_mode = "view";//Part can be edited
}
AFTER ****************************************************
/* Setting rendering mode, except if $params is not an object : params can be string (com_tags) */
if (gettype($params) == 'object'){
if ($medium == 'document.page')
$params->rendering_mode = "edit";//Part can be edited
else{
if ($frontEditing && $canModifyPart)
$params->rendering_mode = "edit";//Part can be edited
else
$params->rendering_mode = "view";//Part can be edited
}
}

Hope this will help you, sorry for the delay.
Regards
The NGE TEAM

Please Log in or Create an account to join the conversation.

Powered by Kunena Forum