• Resolved rikengct

    (@rikengct)


    Thank you for continuing with this plugin.
    I have a few questions.

    1) does this plugin require access to any of the wordpress folders (like wp_includes) to function? If so, which ones?

    2) I ask because my business will not allow any access to those folders. In order to get jquery to work, I have been using this function to make users use the google library:

    function modify_jquery() {
    if (!is_admin()) {
    // comment out the next two lines to load the local copy of jQuery
    wp_deregister_script(‘jquery’);
    wp_register_script(‘jquery’, ‘http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js’, false, ‘1.11.3’);
    wp_enqueue_script(‘jquery’);
    }
    }
    add_action(‘init’, ‘modify_jquery’);

    This works most of the time, but it’s not working for this tooltip.
    Instead, the tooltip appears with the following text:
    “Glossary Title” in the title space, and “error: Forbidden” in main text area.

    when I access within the company, everything works fine. So I’m figuring I need to do something in addition to using the google-hosted library.

    I hope you have ideas because I really like the way the tooltip looks and it was easy to make my own css style and add it to the menu.

    here is a link to the site: http://itaintmagic.riken.jp/about-us/
    I highlighted the glossary term in yellow.

    https://ww.wp.xz.cn/plugins/ithoughts-tooltip-glossary/

Viewing 16 replies (of 16 total)
  • Plugin Author Gerkin

    (@gerkin)

    Hello rikengct,

    v2.0.4 comes with the ability to use static terms, which are directly integrated into the generated page and don’t require Ajax 😉 but this option can slow down a little bit the page generation time.

    Can you test it and tell me if it fits your needs?

    Gerkin

Viewing 16 replies (of 16 total)

The topic ‘error displaying tooltip’ is closed to new replies.