• Resolved Mirela

    (@mimi123b)


    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

    (@gamerz)

    Sorry, that is not possible, the title attribute are hardcoded. You can use jQuery to remove it instead

    Thread Starter Mirela

    (@mimi123b)

    Would you perhaps know the jQuery code to remove it? I am not much of an expert at it.

    Plugin Author Lester Chan

    (@gamerz)

    maybe like

    
    jQuery( document ).ready(function($) {
        $('.wp-pagenavi a').removeAttr('title');
    });
    
    Thread Starter Mirela

    (@mimi123b)

    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.