ivanrazine
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: My root was hackedThanks! Will do!
Forum: Plugins
In reply to: [Gallery Manager] [Plugin: Fancy Gallery] Not WorkingI’m just glad you made it 🙂
Forum: Plugins
In reply to: [Gallery Manager] [Plugin: Fancy Gallery] Not WorkingYou insert jQuery 1.4.4 on line 17 and jQuery 1.4.2 on line 61.
You also use too many plugins for what it’s worth.
For example, you don’t need to use Cufon when you know how to use @font-face
Forum: Plugins
In reply to: [Gallery Manager] [Plugin: Fancy Gallery] Not WorkingYou have to make sure jQuery is only inserted once before any other code.
I had the same problem, the same Firebug console error and I solved it by making sure no plugin inserted jQuery.
If it doesn’t help, you should probably write a cleaner menu code by yourself, here is my example: Demo
Forum: Plugins
In reply to: [Gallery Manager] [Plugin: Fancy Gallery] Not WorkingSo, when you take out this bit of code, your menu stops working?
Forum: Plugins
In reply to: [Gallery Manager] [Plugin: Fancy Gallery] Not WorkingYou may also add this code to your functions.php :
<?php function my_init_method() { if (!is_admin()) { wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4/jquery.min.js'); wp_enqueue_script( 'jquery' ); } } add_action('init', 'my_init_method'); ?>Forum: Plugins
In reply to: [Gallery Manager] [Plugin: Fancy Gallery] Not WorkingSolved your problem:
wp-content/plugins/coin-slider4-wp/coinslider-content.php
>>>DELETE LINE 42
Check my website: centrerussemons.net
Works like a charm!!!