Viewing 7 replies - 1 through 7 (of 7 total)
  • Hi ODAK71, can you share a link?

    Thread Starter ODAK71

    (@odak71)

    OK, I see what is happening…

    Since you’re not afraid of modifying plugin files 😉 could you test something for me?

    Please edit the line (inside the init() method):

    add_action('wp_footer', array(__CLASS__, 'query') );

    to

    add_action('wp_footer', array(__CLASS__, 'query'), 1);

    (notice the “,1” there)

    If that does not work then change it to:

    add_action('wp_head', array(__CLASS__, 'query'));

    (“wp_head” instead of “wp_footer”)

    Please let me know which if the steps did (not) work for you.

    Thanks 🙂

    Thread Starter ODAK71

    (@odak71)

    add_action('wp_head', array(__CLASS__, 'query'));

    was the solution. Thanxs.

    OK, thanks for sharing 🙂

    Thread Starter ODAK71

    (@odak71)

    Gladly. Thank you very much for your coding work!

    How about to set jquery classes and IDs via an setting field in backend?

    Till now all user, which has individual classes and IDs set in the plugin must adapt it on every update of the plugin manually.

    How about to set jquery classes and IDs via an setting field in backend?

    Yes, this is planned for the next version 🙂

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Did not working’ is closed to new replies.