kingkin
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Animations And Transitions] error after update to WP 4.5@larsmmd, I don’t have the plugin either, I was searching for a solution regarding the Avada theme. I only realized after posting I was on the wrong thread. I suspect the broken code is somewhere in the fusion-core plugin, but I have no idea where.
As @immanence has mentioned my solution is not ideal but does work as a temporary fix.
Forum: Plugins
In reply to: [Page Animations And Transitions] error after update to WP 4.5@immanence how to I find the offending code? I’m no expert by a longshot, just spent a lot of lime googling for a solution. Any help you can offer will be greatly appreciated
Forum: Plugins
In reply to: [Page Animations And Transitions] error after update to WP 4.5I added this code to the functions.php file in my theme, in order to use previous version of jQuery. worked like a charm 🙂
//jQuery Insert From Google if (!is_admin()) add_action("wp_enqueue_scripts", "my_jquery_enqueue", 11); function my_jquery_enqueue() { wp_deregister_script('jquery'); wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js", false, null); wp_enqueue_script('jquery'); }Forum: Plugins
In reply to: [WP-Cycle] [Plugin: WP-Cycle] links open in new windowgo to this section in the php code and overwrite the first line (seen below with the second line
///////////////////////////////////////////////
this final section generates all the code that
is displayed on the front-end of the WP Theme
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\