Need to be pointed in the right direction
Just been working a plugin that adds a custom profile link
This was previously working in 0.6.0
However, just upgraded to 0.6.1, and well it stopped working
my filter:user.profileLinks is like
links.push({
id: 'tipping_history',
route: 'history',
icon: 'fa fa-history',
name: "Tipping history"
});
When i navigate to the profile menu, it is not visible.
If i dig in and inspect the elements on the page i can see that it is embedded in the list, but the class contains 'hide' which is doing its job and hiding
<li id="{profile_links.id}" class="plugin-link private hide"><a href="/user/gnasher/history"><i class="fa fa-fw fa fa-history"></i> Tipping History</a></li>
if i manually modify the page and remove hide, it will display my custom menu item,
but i am having some frustration finding where to sort that in my plugin programically.
Additioanlly, 'id' is not being pulled from the above configuration