Mizunga
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] Loading Captcha ErrorOk, it was a CSS problem.
Forum: Plugins
In reply to: [Contact Form 7] Loading Captcha ErrorDone, it must be something with the theme but I can’t find what it is. Any idea where to start and what to look for?
BTW, I am loading the form via do_shortcode in the template:
<?php echo do_shortcode( '[contact-form-7 id="765" title="Contacto Preparador"]' ); ?>
Thank you.
Forum: Plugins
In reply to: [LH User Taxonomies] Do not display taxonomies created with LH in Backend.Hello again and thanks for your help.
The problem is that I can’t get to update wp_set_object_terms(), even adding the values myself.
I got a form in the users profiles to let them select the categories they want to be in. This is the code to update the taxonomies:
wp_set_object_terms( 1, 25, ‘especialidad’, false); –> this is a manual attempt to check if there was a problem with the values.
if( !empty( $_POST['select-especialidad'] ) ) { $term_esp = $_POST['select-especialidad']; $term_especialidad = get_term_by('name', $term_esp, 'especialidad'); $ID_especialidad = $term_especialidad->term_id; /* Actualizar ACF */ update_field( 'field_56e933f047e36', $ID_especialidad, $user_id_acf ); /* Actualizar WordPress wp_term_relationships de WordPress * A?adir nuevas */ $final_user_id = $current_user->ID; wp_set_object_terms( $final_user_id, $ID_especialidad, 'especialidad', false); clean_object_term_cache($final_user_id, 'especialidad'); }
I know that the code is working fine, because ACF fields get updated, but seems impossible with wp_set_object_terms. Any help is more than welcome.
I was looking for a PHP snippet to use in the templates. But maybe I can use it with do_shortcode.
Forum: Plugins
In reply to: [Testimonial Slider] Error on Firefox and ExplorerThe problem is when user is logged in or not. When I access it works fine, when not it looks like the image in the previous message. Any idea?
Forum: Plugins
In reply to: [Contact Form 7] Mailsent Blank Page ErrorPlease, any idea?
Forum: Plugins
In reply to: [Contact Form 7] Mailsent Blank Page ErrorAgain the same, now different message:
{“mailSent”:true,”into”:”#wpcf7-f204-p108-o1″,”captcha”:null,”message”:”Thank you for your message. It has been sent.”}
Forum: Plugins
In reply to: [Contact Form 7] Mailsent Blank Page ErrorSeveral plugins, here’s a list:
-
301 Redirects
Advanced Custom Fields
Akismet
Aviso de Cookie
BackWPup
Better WordPress Minify
Black Studio TinyMCE Widget
Broken Link Checker
Contact Form 7
EWWW Image Optimizer
Force SSL
Google Analytics by MonsterInsights
Imsanity
Iupay WooCommerce
Jetpack por WordPress.com
MailPoet Newsletters
MailPoet WooCommerce Add-on
Redsys WooCommerce
Smart Manager
WooCommerce
WooCommerce – APG Weight and Postcode/State/Country Shipping
WooCommerce Print Invoice & Delivery Note
WooCommerce Sequential Order Numbers
Wordfence Security
WP All Import
WP All Import – WooCommerce Add-On
WP Help
WP-Optimize
WPBakery Visual Composer
Yoast SEOThe problem is the login_enqueue_scripts hook itself. Better use login_head() and it will be solved.
Forum: Plugins
In reply to: [Contact Form 7] UI Problem when adding new fieldsConfirmed, it was caused by an outdated plugin. Purethemes.net Shortcodes from Purethemes. I was using WPVoyager Theme.
Forum: Plugins
In reply to: [Contact Form 7] UI Problem when adding new fieldsHello,
I use chrome and firefox latest version.
BTW I think that it is related with a 3rd plugin, but not sure yet.
Ah ok, I thought that the add product was included in the free vesion of the plugin.
Thanks.
This is a JS error that I found in console. Synchronous XMLHttpRequest on the main thread is deprecated because of its detrimental effects to the end user’s experience. For more help, check https://xhr.spec.whatwg.org/.
Forum: Plugins
In reply to: [Bootstrap for Contact Form 7] Submit Button Change ClassIn the additional settings tab, write:
submit_type:default
More info here.