svenms
Forum Replies Created
-
Forum: Plugins
In reply to: [Redux Framework] Only variables should be passed by referenceExcellent! All fixed!
Same problem, first stop working on one site a month ago and now it has stop working on another site that is under my own VPS.
Forum: Plugins
In reply to: [Cloudflare] LiteSpeed Cache with Cloudflare APOAnother question would be, how can we clear Cloudflare caché for a single post, for example a product with code? I mean calling some cloudflare class or filter.
Thanks!
Hi,
We are also having problems, we can have an updated local cache, but from Cloudflare side, the caché is not up to date.
If anyone acknowledge how to fix this, we would appreciate it a lot.- This reply was modified 3 years, 7 months ago by svenms.
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Pagos que vuelven a ProcesandoHola @tomillos , tu caso es distinto. De hecho tu problema lo puedes resolver sin un plugin, simplemente con un código en functions.php para que cuando pase a Procesando, pase a completado automáticamente:
add_action('woocommerce_order_status_changed', 'order_completada', 99, 3); function order_completada( $order_id, $old_status, $new_status ){ if($new_status == "processing" ){ $order = new WC_Order($order_id); $order->update_status( 'completed'); } }
(Ojo que con esto nunca podrás tener un pedido en estado Procesando)
Saludos
Forum: Plugins
In reply to: [LiteSpeed Cache] WordPress 5.6 compatibility?Dears,
The following files appear to be deprecated by the last jQuery Migrate Helper.
https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:43:29): jQuery.fn.click() event shorthand is deprecated https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:73:23): jQuery.fn.change() event shorthand is deprecated https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:79:33): jQuery.fn.click() event shorthand is deprecated https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:90:34): jQuery.fn.click() event shorthand is deprecated https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:130:32): jQuery.fn.click() event shorthand is deprecated https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:134:33): jQuery.fn.click() event shorthand is deprecated https://www.chilevapo.cl/wp-content/plugins/litespeed-cache/assets/js/litespeed-cache-admin.js:162:28): jQuery.fn.click() event shorthand is deprecated
Estimados,
Con respecto a los Estados de pedido personalizados, ?creen que podrían mejorar la compatibilidad de su plugin con el Plugin que ofrece Woocommerce para agregar/modificar Estados de Pedidos?: https://woocommerce.com/products/woocommerce-order-status-manager/
Básicamente lo que habría que agregar es chequear si el Estado del Pedido proviene del Core de Woocommerce. Si no es así, entonces consulta si el pedido ya fue pagado o no. Si ya fue pagado entonces no se puede modificar, pero si no ha sido pagado entonces MercadoPago puede cambiar el estado del pedido.
WC_WooMercadoPago_Notification_Abstract.php
protected function canUpdateOrderStatus($order) { if(class_exists('WC_Order_Status_Manager_Order_Status')){ $order_status = new WC_Order_Status_Manager_Order_Status( $order->get_status() ); if ( ! $order_status->is_core_status() ) { return false === $order_status->is_paid(); } } return method_exists($order, 'get_status') && $order->get_status() !== 'completed' && $order->get_status() !== 'processing'; }
Forum: Plugins
In reply to: [WooCommerce] Shipping method not been added to order sometimesHello,
Yes it also happens with core shippings.
We found out a pattern, it just happens when customers create an account in Checkout. So we disabled registering a new account on Checkout.
But if you have any idea why this may be happening or may be correlated it would be very helpful for us.Thank you !
Sven
Forum: Plugins
In reply to: [Redux Framework] Only variables should be passed by referenceoh I am sorry, the problem I am experiencing is that I’m getting the following message on Debug:
[04-Jan-2021 15:43:14 UTC] PHP Notice: Only variables should be passed by reference in /home/chilevapo.cl/public_html/wp-content/plugins/redux-framework/redux-core/inc/classes/class-redux-functions-ex.php on line 312
Many many times, when I navigate on backend. I think this started with the newest version of the plugin.
Forum: Plugins
In reply to: [Redux Framework] Only variables should be passed by referencePlease update the plugin, I have a Debug.log for about 100 MB because if this problem.
(yeah I need debug enabled all the time).Best regards,
Sven
Orders in Custom States that were already Paid keep changing to Processing by this plugin. It is a mess!
It has already been 5 months and the problem remains.
You have to stop modifying Paid orders.
Insert metadata, anything, whatever you want on the order to stop changing its state, but fix this ASAP please!Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Pagos que vuelven a ProcesandoEs increíble que luego de 5 meses estos problemas se sigan repitiendo.
MercadoPago vuelve a enviar Notificaciones de Pedido Procesando cuando este ya ha sido pagado. El único estado que no cambia (por suerte) es Completado.
SOLUCIONEN ESTO!@mercadopago
La mayoría de las tiendas grandes de Woocommerce REQUIERE el uso de Estados de Pedido personalizados para poder realizar operaciones propias de cada rubro. Incluso Woocommerce ofrece un plugin para este cometido ( https://docs.woocommerce.com/document/woocommerce-order-status-control/ ) sin embargo su plugin es incompatible en este sentido.
El flujo de pagos que realiza MercadoPago no es el correcto, no es limpio pues bajo ningún caso debería enviarse una segunda notificación de Pedido Pagado a las tiendas, éste propicia graves errores en el flujo de los Pedidos y va en detrimento a las mismas tiendas.Si utiliza otros estados, después de la aprobación del pago, distintos de completado, se recomienda llevar a cabo una personalización en el estado utilizado.
?Qué quiere decir con esto?
Forum: Plugins
In reply to: [Redux Framework] Only variables should be passed by referenceSame problem!
Forum: Plugins
In reply to: [WooCommerce] Shipping method not been added to order sometimesI found out a pattern.
The problem just appears when customers create an account in Checkout clicking ‘Create an account’ option.