johndg10
Forum Replies Created
-
Encontré una solución a esto, puede que les sirva a los demás.
En place-select.js en la linea 89 agregar la clase .woocommerce-address-fields en la variable $containervar $container = $( this ).closest( 'div.woocommerce-billing-fields, div.woocommerce-shipping-fields, form.woocommerce-shipping-calculator, form.mvx_shop_settings_form, .woocommerce-address-fields' );
Forum: Plugins
In reply to: [WooCommerce] Ship to diffrent adress is pre checked since updateA temporary fix that works for me, while updating WC:
$(document).ready(function() { if ( $('form.checkout').length > 0 ) { $('#ship-to-different-address-checkbox').prop('checked', false); // Uncheck $('.woocommerce-shipping-fields .shipping_address').hide(); // Hide fields $('body').trigger('update_checkout'); // Update cart } });
Paste in a custom .js file that load in checkout page.
Forum: Plugins
In reply to: [CAPTCHA 4WP - Antispam CAPTCHA solution for WordPress] v3 don’t workI have the same problem but in woocommerce checkout page.
Forum: Plugins
In reply to: [WooCommerce] Ship to diffrent adress is pre checked since updateSame problem since 3.9.0 / 3.9.1
- This reply was modified 5 years, 1 month ago by johndg10.
I had the same problem. If I enable wp_debug in wp-config.php, the Facebook login does not work.
I fixed it, replacing in the GraphRawResponse.php file
preg_match('|HTTP/\d\.\d\s+(\d+)\s+.*|', $rawResponseHeader, $match);
by
preg_match('/HTTP\/\d(?:\.\d)?\s+(\d+)\s+/',$rawResponseHeader, $match);
.. it would be nice to consider it for an upcoming update.
- This reply was modified 5 years, 3 months ago by johndg10.
No, solo edite el archivo place-select.js al principio eliminando
typeof wc_country_select_params === 'undefined' ||
y ya con eso comenzó a funcionar el filtro de ciudades en el select.Borra caché, por si algo.