Viewing 8 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic.
When I try to add sections in the Content section of a Header with Image section, I get the console error “Uncaught TypeError: $(…).qtip is not a function” and all buttons and links (inlcuding WP buttons and links) no longer work. The sub-menu is displayed but items in it can’t be clicked and it can’t be closed.
This also happens with any section that has options to add sub-sections (background in a section boxed wrapper on testimonials and others).
How can I fix this so I am able to use the layout functionality properly? Thanks
You must be logged in to see this reply. Please log in
Thanks for the reply Tomas. The details are attached. Let me know if you need anything more.
You must be logged in to see this reply. Please log in
Thanks very much Tomas. My install isn’t showing updates yet in the WP admin panel, am I doing something wrong or is there somewhere else I should look?
You must be logged in to see this reply. Please log in
I’m still getting the same error. I updated as you mentioned, also removed the theme and related plugins and reinstalled from a fresh download on themeforest. Error attached:
I’ve fixed this in my install by including the qtip plugin on the admin side of the site. I’ve created a child theme for our client, and by adding this in the functions.php of the child theme, everything works as it should.
function load_custom_wp_admin_includes() {
wp_register_style( ‘custom_wp_admin_qtip’, ‘https://cdnjs.cloudflare.com/ajax/libs/qtip2/3.0.3/jquery.qtip.min.js
‘, false, null );
wp_enqueue_script( ‘custom_wp_admin_qtip’ );
}
add_action( ‘admin_enqueue_scripts’, ‘load_custom_wp_admin_includes’ );
You must be logged in to reply to this topic.
To get started, it's always a good idea to have a look into our Knowledge Base first, because the most popular questions are usually already answered in there.
But if you still have a question, think you found a bug or just want to talk with other users of the same product, then please join our Community Forums. Our dedicated Support Team that roam these forums will do their best to help you.