Title: Remove attribute title without modifying core files?
Last modified: May 29, 2017

---

# Remove attribute title without modifying core files?

 *  Resolved [Mirela](https://wordpress.org/support/users/mimi123b/)
 * (@mimi123b)
 * [9 years ago](https://wordpress.org/support/topic/remove-attribute-title-without-modifying-core-files/)
 * I coded a theme with wp-pagenavi activated. I also added qTip, which is affecting
   all elements with an attribute title attached and unfortunately, the plugin is
   one of them. I already know you can remove the title through the core files, 
   which I have and it’s worked. However, I was wondering if there was a method 
   to remove it without modifying the plugin’s core files? Thank you.

Viewing 4 replies - 1 through 4 (of 4 total)

 *  Plugin Author [Lester Chan](https://wordpress.org/support/users/gamerz/)
 * (@gamerz)
 * [9 years ago](https://wordpress.org/support/topic/remove-attribute-title-without-modifying-core-files/#post-9178274)
 * Sorry, that is not possible, the title attribute are hardcoded. You can use jQuery
   to remove it instead
 *  Thread Starter [Mirela](https://wordpress.org/support/users/mimi123b/)
 * (@mimi123b)
 * [9 years ago](https://wordpress.org/support/topic/remove-attribute-title-without-modifying-core-files/#post-9181298)
 * Would you perhaps know the jQuery code to remove it? I am not much of an expert
   at it.
 *  Plugin Author [Lester Chan](https://wordpress.org/support/users/gamerz/)
 * (@gamerz)
 * [9 years ago](https://wordpress.org/support/topic/remove-attribute-title-without-modifying-core-files/#post-9181974)
 * maybe like
 *     ```
       jQuery( document ).ready(function($) {
           $('.wp-pagenavi a').removeAttr('title');
       });
       ```
   
    -  This reply was modified 9 years ago by [Lester Chan](https://wordpress.org/support/users/gamerz/).
 *  Thread Starter [Mirela](https://wordpress.org/support/users/mimi123b/)
 * (@mimi123b)
 * [9 years ago](https://wordpress.org/support/topic/remove-attribute-title-without-modifying-core-files/#post-9184196)
 * That worked perfectly. Thank you!

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove attribute title without modifying core files?’ is closed to new
replies.

 * ![](https://ps.w.org/wp-pagenavi/assets/icon.svg?rev=977997)
 * [WP-PageNavi](https://wordpress.org/plugins/wp-pagenavi/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-pagenavi/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-pagenavi/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-pagenavi/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-pagenavi/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-pagenavi/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Mirela](https://wordpress.org/support/users/mimi123b/)
 * Last activity: [9 years ago](https://wordpress.org/support/topic/remove-attribute-title-without-modifying-core-files/#post-9184196)
 * Status: resolved