jeiriart
Forum Replies Created
-
Forum: Plugins
In reply to: [RabbitLoader Cache: Optimize your Website for Speed] Replace some imagesHi, the theme is Portos, and this: ?rl-resize=0 was the solution
thanks!Forum: Plugins
In reply to: [RabbitLoader Cache: Optimize your Website for Speed] Replace some imagesHi, no, this is built with WPBakery, so there are no hooks to intercept the css. We need to be able to intercept the image directly, but I understand it is not possible to do this?
Forum: Plugins
In reply to: [RabbitLoader Cache: Optimize your Website for Speed] Replace some imagesMy problem is that your cdn shrinks the size of the image to 1920px wide, this makes the design break on some screens, so we want to be able to remove those particular images from the cdn. Problem 1: they are changing all the time and there are always new ones, we need to be able to do it ourselves. Problem 2: we need to be able to do it from the WordPress backoffice.
Web: https://arcorencasa.com/bagley/
Image: https://cfw.rabbitloader.xyz/eyJjIjp0cnVlLCJoIjoiYXJjb3JlbmNhc2EuY29tIiwidiI6MjcwMzc0NjM2Mn0/wp-content/uploads/2023/07/seccion-fondo-bagley-rojo2.png (is a background)Forum: Plugins
In reply to: [RabbitLoader Cache: Optimize your Website for Speed] Replace some imagesHi, yes, that works, but the images are backgrounds, we need to be able to intervene the hook that loads them, in this case “wp_calculate_image_srcset” does not work because it is for images with “figure” or “img” tags and we discard it since for backgrounds this hook does not work. In the administration panel works “wp_get_attachment_url” but not in the frontoffice. How do you replace the image then if not with hooks?
Thanks
- This reply was modified 1 year, 8 months ago by jeiriart.
Forum: Themes and Templates
In reply to: [Woostify] Filter Quantity ERROR overridehi, ahh perfect. it’s for a grocery store (is not in production yet). Thanks!
Forum: Themes and Templates
In reply to: [Woostify] Filter Quantity ERROR overridesorry, i dont see this, yes, this code :
when I add the code to my functions.php it doesn’t show, but if i comment the line in your theme ( inc/woocommerce/class-woostify-woocommerce.php) it displays correctly
Forum: Plugins
In reply to: [Variation Swatches for WooCommerce] DANGER with this pluginSorry, WordPress doesn’t send notifications about responses. Don’t worry, I figured something like this happened, Thanks!
Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Double ordersame here, how can i fix it?
this version, do they work with any payment gateway?Forum: Plugins
In reply to: [YITH WooCommerce Subscription] Duplicate Order with Yith & Woo CommerceHi @yithemes, I send a screenshot, it is the same order with a different number, inside the order it says “is_a_renew = yes”…
https://ibb.co/F7vnCLz
https://ibb.co/8g0pgXCboth with paypal and other payment gateways
sorry my inglish
Bueno, esta bien solución @tomillos pero tiene problemas con transferencia bancaria cheques y demas pagos fuera de linea, en este link: https://stackoverflow.com/questions/35686707/woocommerce-auto-complete-paid-orders explican como hacer para que no haya lios.
El codigo sería
add_action( ‘woocommerce_thankyou’, ‘wc_auto_complete_paid_order’, 20, 1 );
function wc_auto_complete_paid_order( $order_id ) {
if ( ! $order_id )
return;// Get an instance of the WC_Product object
$order = wc_get_order( $order_id );// No updated status for orders delivered with Bank wire, Cash on delivery and Cheque payment methods.
if ( in_array( $order->get_payment_method(), array( ‘bacs’, ‘cod’, ‘cheque’, ” ) ) ) {
return;
}
// For paid Orders with all others payment methods (paid order status “processing”)
elseif( $order->has_status(‘processing’) ) {
$order->update_status( ‘completed’ );
}
}@tomillos lo voy a probar y aviso, pero tiene toda la logica por lo que veo, ahora voy a revisar los hooks de WC a ver si todavía existe porque estan cambiando muchos. Aviso ni bien lo pruebe, muchas gracias!
Dejo el comentario para ver si hay solución, di vueltas el plugin de arriba abajo y no hay forma, anda cada vez peor…
- This reply was modified 5 years, 1 month ago by jeiriart.
Forum: Plugins
In reply to: [Mercado Pago payments for WooCommerce] Credenciales Checkout BasicoHola (JA)… https://www.mercadopago.com/mla/account/credentials?type=basic ahí busca en Checkout personalizado
El problema del texto en los medios de pago, se soluciono con el gist! Muchas gracias!
y para cuando estaría la corrección? sino decime que archivo toco y lo hago yo, porque me estan apurando.