- ๐ฎ๐ณIndia rakesh.regar Rajasthan, India
rakesh.regar โ made their first commit to this issueโs fork.
- ๐ง๐ชBelgium lobsterr
I am not sure what is the problem on your side, but by default the title is always displayed:
As you see I set for my menu description property "SOME DESCRIPTION" and it is correctly displayed:
<a href="/" title="SOME DESCRIPTION" class="is-active sf-depth-1 menuparent" role="menuitem" aria-haspopup="true" aria-expanded="false">subchild</a>
We have 2 options to manipulate title:
1) Disable hyperlink descriptions ("title" attribute) (Default: disabled)
If I check this option I will get the next result:
<a href="/" title="" class="is-active sf-depth-1 menuparent" role="menuitem" aria-haspopup="true" aria-expanded="false">subchild</a>
As you see the title is empty!
2) Insert hyperlink descriptions ("title" attribute) into hyperlink texts. (Default: disabled)
If I check this option I will get the next result:
<a href="/" title="" class="is-active sf-depth-1 menuparent" role="menuitem" aria-haspopup="true" aria-expanded="false">subchild <span class="sf-description">SOME DESCRIPTION</span></a>
as you can see description was added to a text of this link.
Could you explain what is the problem here then?