Git Product home page Git Product logo

Comments (5)

 avatar commented on August 11, 2024

The SEO plugin uses qTip v1.0.0-RC1 and the framework uses v2.2.0

Do you have any idea how to resolve this conflict?

from unyson.

 avatar commented on August 11, 2024

http://craigsworks.com/projects/qtip/

s

from unyson.

rawcreative avatar rawcreative commented on August 11, 2024

Aside from either loading the framework's qtip script in the footer after the plugin's, or actually modifying the qtip script, the only way I can really think of is to de-queue the plugin's version.

As a test, I added the code below to backend.php to see if it would actually work and it does. The plugins help tips no longer work but, at least the builder isn't impacted.

//added to add_actions method
add_action('admin_enqueue_scripts', array($this, '_action_admin_dequeue_scripts'), 11);


public function _action_admin_dequeue_scripts()
{
    if(wp_script_is('jquery-qtip', 'enqueued')) {
            wp_dequeue_script( 'jquery-qtip' );
        }
}

from unyson.

 avatar commented on August 11, 2024

Changelog v1.7

  • Enhancements:
    • Qtip library replaced with Qtip2.

from unyson.

 avatar commented on August 11, 2024

After they upgraded to qtip2 the problem disappeared.

Reopen this issue if you are still experiencing js errors.

from unyson.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.