Tooltip Showing Metadata for Target

Posted by Community Admin on 04-Aug-2018 20:11

Tooltip Showing Metadata for Target

All Replies

Posted by Community Admin on 22-May-2012 00:00

In my main navigation when someone mouses over the nav link the tooltip shows the metadata associated with that page - for pages that don't have any it doesn't show anything, which is most of the time, but for my pages that are Search Engine Optimized I have long ugly descriptions of each page. 

Is there an easy way to turn this off or hide it without removing any metadata?

Posted by Community Admin on 25-May-2012 00:00

It has something to do with the Navigation widget putting the metadata in the links it generates, do I need to specify an external template to get it to generate the links without all the metadata?

Posted by Community Admin on 25-May-2012 00:00
Posted by Community Admin on 25-May-2012 00:00

I tried that, I put it in my base template and it's still showing up, was there any other code I was meant to put in for it to work? I'm using Sitefinity 5.

Posted by Community Admin on 29-May-2012 00:00

I ended up solving the problem by using 

$("document").ready(function()

$(".rsmItem a").attr("title", "");
);

The problem was that Sitefinity was not updating the page late enough, the script would run but not update anything that loaded after the script ran. I hope that if someone else has a similar problem this helps them out as well.

This thread is closed