marcie73
Forum Replies Created
-
I solved this way, I don’t know if it is a good thing or not. I removed script concatenation managed by load-script.php, I deregistered local version of jquery e registered a CDN one.
Everything works!function add_admin_jquery() { if (is_admin()) { wp_deregister_script('jquery'); wp_register_script('jquery', 'https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js', FALSE, '1.10.2', FALSE); } } add_action('admin_enqueue_scripts', 'add_admin_jquery');
I Spoke too fast! The Ui central section seems alright, i can se all accordion tabs, but in the right column, users and roles don’t appear…sigh ??
Forum: Fixing WordPress
In reply to: Widgets not drag or drop after update to 3.8I solved it somehow. It was not a plugin problem. For some reasons admin jquerui-ui is not showing in the header ad I had to register it and enqued it in my functions.php. So load-scripts.php can find and load method “sortable” and so on.
So this is the code I used:<?php function add_admin_jqueryui() { if (is_admin()) { wp_register_script('jqueryUi', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js'); wp_enqueue_script('jqueryUi'); } } add_action('init', 'add_admin_jqueryui'); ?>
I solved it. It wa not a plugin problem. For some reasons admin jquerui-ui is not present ad OI had to register it and enqued it in my functions.php. Now widgets are working and your UI is showing perferctly now!
<?php function add_admin_jqueryui() { if (is_admin()) { wp_register_script('jqueryUi', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/jquery-ui.min.js'); wp_enqueue_script('jqueryUi'); } } add_action('init', 'add_admin_jqueryui'); ?>
Thank you WP AMM, I think the thing is more complex. Widget area is not working properly either because of a JQuery-ui conflict, i guess. I read of many others having a similar issue with no solution, at least in my case. it’s very frustrating. Thank you anyway.
Many thnaks Droople for these other useful otions!
Forum: Fixing WordPress
In reply to: Widgets not drag or drop after update to 3.8forgetting to say that the problem must be related to the theme I’m using since I’m managing other wordpress sites and this problem di not not occurred in those. I also tried to deactivate all plugins but nothing has changed. Many thnks
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] add extra fieldsFantastic! Many thanks!!
Forum: Plugins
In reply to: [plugin:woocommerce] Poor image qualityMany Thanks Grafikbutik! it did not like the width of images set to 100%. I put auto and images resized a tiny bit and now they are perfect!
Forum: Plugins
In reply to: [plugin:woocommerce] Poor image qualitySame problem! I have already set the right size in woocomemrce > catalog e regenerate thumbnails to exact sizes. Still Product images look blurry but their sources are sharp! It’s not possible!!
<a href="https://www.youtube.com/v/mycode" rel="shadowbox[mygroup];width=590;height=385"></a>
. In this forum I always end up doing monologues…sorry forgot using code, got stripped after… let’s make an example;
<a href="https://www.youtube.com/v/mycode" rel="shadowbox[mygroup]"></a>
Forum: Plugins
In reply to: [Captcha] using captcha with wp_login_form() functionalright, in fuctions.php, but only works with add_filter (singular).
Forum: Plugins
In reply to: [Captcha] using captcha with wp_login_form() functionFound a previous post…but need further explanation
Where I should add this hook?:
add_filters( ‘login_form_middle’,’cptch_custom_form’ );Many thanks
why not adding simple text saying “By submitting this form I declare that I have read and accepted the privacy policy terms (link to privay policy page). I normally do that if it is too complicated adding a validated checkbox. Hope this help.