RandomJim Posted January 2, 2014 Share Posted January 2, 2014 I want to hide to tooltips on the forum links as im using images as titles and it looks aweful when you hover over the image and you see the <img src=....) as a tooltip Thanks Link to comment Share on other sites More sharing options...
0 RandomJim Posted January 2, 2014 Author Share Posted January 2, 2014 It worked, I found it before reading your post. edited <a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}" title='{parse expression="IPSText::striptags( IPSText::htmlspecialchars($__data[1]) )"}'>{$__data[1]}</a> to this: <a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}">{$__data[1]}</a> Link to comment Share on other sites More sharing options...
0 -Cookie- Posted January 2, 2014 Share Posted January 2, 2014 so you want to keep the writing but not the white box around it? Link to comment Share on other sites More sharing options...
0 Guest DangeR Posted January 2, 2014 Share Posted January 2, 2014 (edited) They're titles and they're on almost every link on the forum. If you want to get rid of them you'll have to edit all the template's links. I recommend copying the template to a program like Notpead++ or SublimeText and finding and replacing all of the titles. <a href="url" title="this is the part you wanna delete"> Edited January 2, 2014 by DangeR Link to comment Share on other sites More sharing options...
0 TJ. Posted January 2, 2014 Share Posted January 2, 2014 From a quick look in to the default IP.Board skin template, I was able to locate this useful little chunk of code: <h4><a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}" title='{parse expression="IPSText::striptags( IPSText::htmlspecialchars( $forum_data['name'] ) )"}'>{$forum_data['name']}</a></h4> I believe if you simply remove the title attribute, it should remove the so called "tooltip". It should look like this: <h4><a href="{parse url="showforum={$forum_data['id']}" seotitle="{$forum_data['name_seo']}" template="showforum" base="public"}">{$forum_data['name']}</a></h4> Link to comment Share on other sites More sharing options...
0 RandomJim Posted January 2, 2014 Author Share Posted January 2, 2014 Pop, that didnt work I just want it to not show on the titles as a few of them are going to be images and it shows the html code when you hover and its just messy would there be a way to set a line in the css that would set any img within forum category that is click-able to hide title ? Link to comment Share on other sites More sharing options...
0 TJ. Posted January 2, 2014 Share Posted January 2, 2014 Pop, that didnt work I just want it to not show on the titles as a few of them are going to be images and it shows the html code when you hover and its just messy Hmm.. I tried it where it applied to the sub-forum listings and it worked like a charm. Maybe I'm just going crazy? I'll look further into it for you and report back if I discover some treasure. Link to comment Share on other sites More sharing options...
0 RandomJim Posted January 2, 2014 Author Share Posted January 2, 2014 would there be a way to set a line in the css that would set any img within forum category that is click-able to hide title ?I lied! I just found it in there again so replaced both and it works on the titles but not on the subforum titles..... ok i will see if i can find another relating to the subforums... Link to comment Share on other sites More sharing options...
0 TJ. Posted January 2, 2014 Share Posted January 2, 2014 would there be a way to set a line in the css that would set any img within forum category that is click-able to hide title ? I lied! I just found it in there again so replaced both and it works on the titles but not on the subforum titles..... ok i will see if i can find another relating to the subforums... Awesome! As for sub-forums, take a look for this: <a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}" title='{parse expression="IPSText::striptags( IPSText::htmlspecialchars($__data[1]) )"}'>{$__data[1]}</a> Link to comment Share on other sites More sharing options...
0 TJ. Posted January 2, 2014 Share Posted January 2, 2014 It worked, I found it before reading your post. edited <code><a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}" title='{parse expression="IPSText::striptags( IPSText::htmlspecialchars($__data[1]) )"}'>{$__data[1]}</a></code> to this: <code> <a href="{parse url="showforum={$__data[0]}" seotitle="{$__data[2]}" template="showforum" base="public"}">{$__data[1]}</a></code> Great! Glad I could help you get your issue resolved. Let us know if any more issues arise. 1 Link to comment Share on other sites More sharing options...
0 RandomJim Posted January 2, 2014 Author Share Posted January 2, 2014 Thanks for the help dude! Link to comment Share on other sites More sharing options...
0 TJ. Posted January 2, 2014 Share Posted January 2, 2014 Thanks for the help dude! Any time, always glad to help. -Pop Link to comment Share on other sites More sharing options...
0 GradientWizzard Posted January 2, 2014 Share Posted January 2, 2014 The question(s) in this support topic have been answered and the owner has been able to solve the problem. Because of this, the support topic has been closed and moved.If you have other questions, please open a new topic. Achievements: February 14 2013 - Joined WebFlake & Became Moderator.March 26 2013 - Became a Dad of 1 kid.April 8 2015 - Became a Dad of 2 kids.July 15 2015 - Retired as a Moderator.November 11 2016 - Passed my Car Driving Licence.April 13 2017 - Became apart of the Junior Moderator Team. Link to comment Share on other sites More sharing options...
Question
RandomJim
I want to hide to tooltips on the forum links as im using images as titles and it looks aweful when you hover over the image and you see the <img src=....) as a tooltip
Thanks
Link to comment
Share on other sites
12 answers to this question
Recommended Posts