How do I remove the permalink pop up window that appears when hovering over must read article links in drop down menu?
1 Answers
Hi Jessica !
To remove the permalink pop up window that appears when hovering over must read article links in drop down menu, you can open the functions.php file. Find the line 913. Replace the following code:
<div class="topnews-title"><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"> <?php the_title(); ?> </a></div>
With new code:
<div class="topnews-title"><a href="" title=""> <?php the_title(); ?> </a></div>
Hope this helps !
Please login or Register to submit your answer