mirageglobe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Image Uploader ProblemHi.
The 2 methods that might help
method 1:
1) disable all plugins
2) convert to the default (unedited) theme. (note: sometimes developers like to modify the default theme so if you are unsure, download the theme from the original makers and upload again)method 2:
1) new wordpress installation
2) export using the export tool from wordpress
3) import to your new wordpressForum: Fixing WordPress
In reply to: Image Uploader Problemhi. its not really add. like my last post, try encapsulating sections of the code with !is_admin. this will prevent offending code from loading in admin area (which is where the uploader is)
cheers. hope this helps
Jimmy
http://www.mirageglobe.comForum: Fixing WordPress
In reply to: Image Uploader Problemfantastic. so its confirmed most likely a jquery library incompatibility issue.
cheers.if you find that some plugins are not working. i suggest you wrap the code within the
functions ..... { the random codessss.... }to like this.
functions ..... { if ( !is_admin() ) { the random codessss.... } }Forum: Fixing WordPress
In reply to: Image Uploader ProblemHad this problem as well. Did my own child theme. Worked after going to functions.php
function my_init_method() { // scripts here updates all areas including admin section. (which always creates problems.) } add_action('init', 'my_init_method');if you have scripts loading in init. such as Jquery. (which i normally load from googleapis the newest version. You have to move it to not admin area like below. This will cause admin section to be void of new jquery sources.
if ( !is_admin() ) { // instruction to only load if it is not the admin area wp_deregister_script( 'jquery' ); wp_register_script( 'jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'); wp_enqueue_script( 'jquery' ); }I suspect its jquery incompatibility issue where admin section uses an older version of jquery.
cheers. hope this helps
Jimmy
http://www.mirageglobe.com