Hello,
That's because the toolbar\default view build the Html via a foreach (a loop), so it's not hard html code, that's why you don't see the exact code responsible for displaying the "empty the wishlist" button.
Now, I can suggest you a method to don't display this button or another via custom Css, follow me step by step :
- Have a look on
this tutorial
to learn how to use custom Css
- Use this kind of css command :
.specific_page_class .hika_toolbar a.hikabtn:first-child {
display: none;
}
=> You have to restrict your command to your Wishlist page, and use unique class association to be sure that your command will be used in your required page.
See my screenshot :
In red: Your targueted button
AND his custom Css (
WITHOUT the specific page class)
In green: My body class with his specific class, we suggest to select unique class like for example in my screenshot "
itemid-125", best tool in my case.
Regards