deffo
Forum Replies Created
-
In this link you can see a short video showing the problem in my stage site. I have a product called TEST where you can see was added to some wishlist showing 1 in that column and after I duplicate to create TEST New, you can see this new product was created showing 1 in the column of wishlist.
https://share.zight.com/eDuOmzO9
I am running WordPress 6.9.4 and WooCommerce 10.7.0
- This reply was modified 4 days, 17 hours ago by deffo.
Forum: Plugins
In reply to: [CheckoutWC Lite] Log in with a user in checkout keeps a guest user emailHi @medavidallsop , I updated the WooCommerce to 10.7.0 and I can confirm the problem is gone. It was an outdated WooCommerce.
Thanks for your support!Forum: Plugins
In reply to: [CheckoutWC Lite] Log in with a user in checkout keeps a guest user emailWhen I place the guest order I don’t enable create account, I continue all the steps as a guest. Then in the second order, I start without login a user just add a product in the cart. When I am in the checkout process I log in with a registered user and after that I see the billing information stays with the guest information. The email input disappeared after I logged in but after making the order, the email in the order is the guest one. Also If I use the snippet to keep the email field visible, after I log in I see the guest email there.
This weekend I will try to update to WooCommerce 10, I am still in some 9 version so maybe that’s the problem and this issue was solver in the 10 version.
Thanks in advance.
Forum: Plugins
In reply to: [Cool Correo Argentino - WooCommerce] Actualización de branches.jsonHola, buen día.
Sigue activo el plugin? pasaron varios meses desde esta consulta y no tuve respuesta. Veo que los branches continúan igual y por ejemplo, no existe ninguna sucursal en la provincia de Entre Ríos.Forum: Plugins
In reply to: [CheckoutWC Lite] Log in with a user in checkout keeps a guest user emailI didn’t try with the checkout of my theme, the result was the same.
I placed an order as a guest user. Then I start over again the process adding a new product to the cart and inside the checkout I logged in with a registered user. After that I saw the billing fields with the guest information and the shipping fields with the registered user information.
I changed the information in the billing fields, also the billing email to match the logged account but after placing the order the billing email was the guest email, also de name, last name, address was with the guest information.
It’s like something is keeping the billing information persisten in the session, even after a user log or change the billing fields.
Forum: Plugins
In reply to: [CheckoutWC Lite] Log in with a user in checkout keeps a guest user emailThanks for your answer.
I have those configurations (WooCommerce → Settings → Accounts & Privacy) checked already.The steps to reproduce the problem are these:
- Add a product to the cart
- Do the checkout as a guest filling all the information (address, shipment, payment)
- After placing the order as a guest browse the store an add a new product to the cart.
- Proceed to checkout, I see the email field fill with the email I used with the guest order so I click in the link “Already have an account with us? Log in”.
- After I logged in, i fill all the information (address, shipment, payment)
- After placing the order I check this new order and it didn’t take the email for the registered user, instead took the guest email.
I tried to create some snippet to clear the fields in checkout to see if the new logged user fill those fields without luck. I think it’s a bug from WooCommerce because I tried with other checkout plugin to see if the problem persist and yes, I had the same problem.
I hope you understood the step to reproduce it on your side and see if you have this problem.
Thanks in advance.
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] Billing phone number is duplicatedThanks for the answer. I created the ticket in your main support channel. You can close this ticket if you want.
Forum: Plugins
In reply to: [Fluid Checkout for WooCommerce - Lite] Billing phone number is duplicatedI am sorry, i mistaken the order of the pictures. The first picture is with your plugin enabled and the second with your plugin disabled.
Thanks for the snippet. It works good.
Now I am considering upgrade to pro in the near future because with your snippet, I can use the discontinued plugin.
Forum: Plugins
In reply to: [Cool Correo Argentino - WooCommerce] Aforo incorrecto con cajas grandesNo hay documentación de eso. Lo descubrí con un envío que al cotizarlo me cobraban mucho más que con el plugin y viendo eso era porque las medidas eran superiores.
Después de hacer varias pruebas con diferentes medidas pude definir cuando utilizaban 6000 o 4000 para el aforo.
Te dejo la modificación que hice en el archivo class-price-method-table.php (probablemente no esté lo mejor posible optimizado pero ta va a dar una idea de cuando toma un valor y cuando el otro).// Fill PaqAr packages. $PaqArs = $this->get_paqars( $items ); foreach($PaqArs as &$Paq) { if ( ($Paq['height'] + $Paq['width'] + $Paq['length']) > 200 ) { $aforo = 4000; } elseif ( max($Paq['height'], $Paq['width'], $Paq['length']) > 120) { $aforo = 4000; } else { $aforo = 6000; } // Coeficiente de Aforo: Depende de tamaño / DEFFO $Paq['volumetric_weight'] = floatval( ( $Paq['height'] * $Paq['width'] * $Paq['length'] ) / $aforo ); $PaqWeight = max( $Paq['weight'], $Paq['volumetric_weight']); foreach ( $WeightRange as $value ) { if ( floatval( $PaqWeight ) <= floatval( $value ) ) { $weight = $value; break; } } $Paq['cost'] += Helper::get_price( $shippingMethod->service_type, strVal( $zone ), strVal( $weight ) ); }Funcionó bien, gracias!
Gracias! recién lo descargué y entre hoy o mañana ya lo estoy probando.
Buen día, hoy volví a chequear y continúa la misma versión sin soporte con HPOS. Tenés idea cuando la suben?
Gracias por la respuesta. Espero el update entonces. Saludos!
Forum: Plugins
In reply to: [PW WooCommerce Bulk Edit] 500 Internal Server ErrorThanks for your answer. I didn’t use the “pwbe_product_columns” hook on my site.
I’ve tested the new version and works good.