Samir Rifai
Forum Replies Created
-
Ok gracias los contacto por ese medio.
SaludosForum: Plugins
In reply to: [PW WooCommerce BOGO] BOGO is not working if already has a free itemHi @guidomgs, was this solved? I’m having a similar issue.
Buy/Spend X, Get 2 Free items.
Not working.
CheersForum: Plugins
In reply to: [YITH WooCommerce Product Add-Ons] Label selection background colorMaybe the following link can clarify my point:
You will find the selected labels with a green background.
- This reply was modified 4 years, 3 months ago by Samir Rifai.
Forum: Plugins
In reply to: [WooCommerce] Regions as Countries and Districts as RegionsHi thanks for your reply.
I’ve resolved the issue adding the following code:
add_filter( 'woocommerce_continents', 'new_add_my_country_to_continents' ); function new_add_my_country_to_continents( $continents ) { $continents['PERU']['countries'][] = 'LIMM'; $continents['PERU']['countries'][] = 'CALL'; return $continents; }
Now the new Regions and Districts are shown in the native Shipping settings.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Hourly mode not workingOk, I finally got it to work.
I had to do the following:
1. Disable WordPress native script in wp-config.php file:
define('DISABLE_WP_CRON', true);
2. Set up a real cron job in my hosting provider and execute the wp-cron.php file with it (in my case Siteground):
wget -q -O - https://yourdomain.com/wp-cron.php?doing_wp_cron >/dev/null 2>&1
These got the plugin to work.
Thanks for the support.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Hourly mode not workingOk, I’ll do some further testing during the weekend.
Maybe I’ll disable the default wordpress cron and activate a real one in my hosting panel.
I’ll let you know how it goes.
Many thanks.Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Hourly mode not workingOh…
I’m confused then.For the gateway I have this:
function woa_custom_gateways_hook( $gateways ) { $gateways[] = 'wocommerce_yape_peru'; // Yape. return $gateways; } add_filter( 'woo_cao_gateways', 'woa_custom_gateways_hook', 10, 1 );
The settings on Yape method shows fine, I have activated the cancellation, hourly mode and 1 hour. But for some reason is not working for me.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Hourly mode not workingHi,
Maybe I forgot to also add the status type (I thought it only needed the gateway):function woa_custom_statustocancel_hook( $status ) { // More explication on WooCommerce status : https://docs.woocommerce.com/document/managing-orders/ //$status[] = 'pending'; $status[] = 'on-hold'; //$status[] = 'processing'; //$status[] = 'completed'; //$status[] = 'refunded'; //$status[] = 'failed'; return $status; } add_filter( 'woo_cao_statustocancel', 'woa_custom_statustocancel_hook', 10, 1 );
The payment method goes to ON-HOLD, so I only defined that status.
I′m testing this new setup.
Thanks.
- This reply was modified 4 years, 6 months ago by Samir Rifai.
Forum: Plugins
In reply to: [WooCommerce Cancel Abandoned Order] Hourly mode not workingJust to clarify, both orders are ON-HOLD orders.
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Cómo cambiar el título en el checkoutHola, el código funciona bien para la versión de Checkout Básico.
?Cómo hacer lo mismo para la versión de Checkout Personalizado?
Gracias,- This reply was modified 4 years, 6 months ago by Samir Rifai.
Thanks for your input. I had no problems after the update and still working fine.
Hola, el problema persiste con algunos intentos de devolución. Sigue saliendo el mismo mensaje:
HTTP Status 400 –
Type Status report
message
description The request sent by the client was syntactically incorrect.
Apache Tomcat/7.0.68The problem I have is as follows:
I use https://timersys.com/plugins/woocommerce-shipping-rates-by-city/ for setting a delivery fee per District, https://yithemes.com/themes/plugins/yith-woocommerce-gift-cards/ for gift cards and this plugin (checkout editor paid version).
I created a new District field in your checkout editor plugin and map it to the shipping by place plugin.
In the checkout page for physical products, it all works fine.
However, when a customer purchases a gift card, the District field is no longer available. And because it’s set as mandatory field, customers cannot complete the purchase.
Any ideas?
Forum: Plugins
In reply to: [YITH WooCommerce Gift Cards] Move code field – Cart pageSame problem here.
In the CHECKOUT, the the coupon field is showing twice, top and bottom.
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Error en Checkout PersonalizadoHola, alguna novedad con la corrección del checkout personalizado?