mohitchawla29
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problems with 4.5 upgrade ADD MEDIA not workingand if you are able to sent me errors from console screen. may be then i can help you more.
Forum: Fixing WordPress
In reply to: Problems with 4.5 upgrade ADD MEDIA not workingbe sure to enqueue the jquery v1.11.3 after the v1.12.0.
only then the wordpress 4.5 errors will be eliminated.Forum: Fixing WordPress
In reply to: Problems with 4.5 upgrade ADD MEDIA not workingplaease inspect page source. because included files should be enqueued after default jquery.
Forum: Fixing WordPress
In reply to: Problems with 4.5 upgrade ADD MEDIA not workingplease include both these lines in functions.php in wp_enqueue_scripts action at the top
wp_enqueue_script( ‘jquery-1-11-3’, ‘//code.jquery.com/jquery-1.11.3.min.js’);
wp_enqueue_script( ‘jquery-migrate-1-2-1’, ‘//code.jquery.com/jquery-migrate-1.2.1.min.js’both gravity form,, contact form issue will be resolved
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Problems after Update to WP 4.5You can resolve every problem of wordpress 4.5 with a simple solution
by using this in functions.php
/**
* Enqueue script with script.aculo.us as a dependency.
*/
function my_scripts_method() {
wp_enqueue_script( ‘jquery-1-11-3’, ‘//code.jquery.com/jquery-1.11.3.min.js’);
wp_enqueue_script( ‘jquery-migrate-1-2-1’, ‘//code.jquery.com/jquery-migrate-1.2.1.min.js’ );
}
add_action( ‘wp_enqueue_scripts’, ‘my_scripts_method’, 1 );Forum: Fixing WordPress
In reply to: Problems with 4.5 upgrade ADD MEDIA not workingYou can resolve every problem of wordpress 4.5 with a simple solution
by using this in functions.php
/**
* Enqueue script with script.aculo.us as a dependency.
*/
function my_scripts_method() {
wp_enqueue_script( ‘jquery-1-11-3’, ‘//code.jquery.com/jquery-1.11.3.min.js’);
wp_enqueue_script( ‘jquery-migrate-1-2-1’, ‘//code.jquery.com/jquery-migrate-1.2.1.min.js’ );
}
add_action( ‘wp_enqueue_scripts’, ‘my_scripts_method’, 1 );