Aitor Méndez
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pago@jconti, he probado a instalar el starter theme que uso (Sage) y ya por defecto, sin hacerle ninguna modificación, reproduce el error. O sea, que parece un problema del starter theme. Debería abrir un issue en su repo de GitHub, pero necesitaría algo de información para explicarles el problema.
El endpoint, dices que lo genera WC ?correcto? Pero no lo veo en los endpoints que vienen en Woocommerce>Advanced.
Ahí vienen varios, pero nada relativo a Redsys. ?Cómo y dónde se genera ese endpoint? ?Hay documentación de ello para que pueda mostrársela a los autores del tema? Mil gracias.
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pagoOk, muchas gracias, José. Me toca investigar.
Cierro el hilo.
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pagoHe activado la depuración en el servidor de pruebas, ya se puede ver ahí el error:
https://fb.e451.net/?wc-api=WC_Gateway_redsys
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pagoQuery monitor no dice nada raro, pero he accedido al endpoint en el entorno local donde tengo activados los errores de depuración y me dice lo siguiente:
/srv/www/futurabasura.com/current/web/app/plugins/woo-redsys-gateway-light/includes/apiRedsys7.php134 Trying to access array offset on value of type null"
En esa línea, dice:
$numPedido = $this->vars_pay['DS_ORDER'];
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pagoBuenos días. No utilizo plugin de seguridad en el momento actual. He desactivado todos los plugins excepto ACF (imprescindible para el tema),
Woocommerce
yWooCommerce Redsys Gateway Light
.La página del endpoint sigue saliendo en blanco.
Voy a probar a cambiar el tema.
[actualización]
Con el tema
Twenty Twenty-One
el endpoint devuelveServired/RedSys Notification Request Failure
. Al menos funciona la página del endpoint.Voy a instalar el query monitor, a ver si me dice algo.
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pagoHe puesto el log en este otro sitio, a ver si hay suerte:
https://hastebin.com/eledoqofop.yamlTengo un error en la página inicial de
WooCommerce>Status>System status
“Your server does not have the SoapClient class enabled – some gateway plugins which use SOAP may not work as expected.”
Además,en
WooCommerce>Status>logs
aparece un log rarísimo con texto en portugés.Fecha: 11 sept
Nombre del log: httpswoocommerce.comwp-jsonwccominbox-notifications1.0notifications.json-2021-09-11-edb276422fe203c8d743afcfe644b393.log
log: https://hastebin.com/rupiqepiyi.php
Hay otros logs que no parecen contener errores.
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
Forum: Plugins
In reply to: [WooCommerce Redsys Gateway Light] Pendiente de pagoMuchas gracias por la respuesta, José. Sí, esa es la página. Ya veo la página en blanco en
https://fb.e451.net/?wc-api=WC_Gateway_redsys
?Sabes cuál puede ser la causa?
El log en pastebin es ahora público. Lo había puesto como “unlisted” que, teóricamente, deja verlo con el enlace.
- This reply was modified 3 years, 2 months ago by Aitor Méndez.
I’ve notice that my custom searchform filter is causing the issue
add_filter('get_search_form', function () { return \App\template( 'partials.searchform' ); });
Forum: Fixing WordPress
In reply to: srcset attribute in Gutenberg gallery blocksSeems to be a known issue
https://github.com/WordPress/gutenberg/issues/13963#issuecomment-465531082
Yep! thank you!
Forum: Plugins
In reply to: [Events Manager - OpenStreetMaps] WPML incompatibleThank you for your response and efforts, Patrick. I know you are not part of EM staff, that is why I have allowed myself to make my last comment.
At this point I’ve decided to build my own infraestructure with CPTs, ACF and fullcalendar.io. I can feel more freedom to build views as I like, gutenberg and WPML compatible.
Anyway, I think you are making an awsome work with EM–OpenStreetMaps plugin.
Thank you a lot ??
Forum: Plugins
In reply to: [Events Manager - OpenStreetMaps] WPML incompatibleOf course! This is what I did:
1) Set “Use dropdown for locations” to “yes”.
2) Edit a random Event and check that I can see the dropdown (yes I can). Dropdown shows a list of locatons previously added. But I can’t create new locations from the Event editor.
3) Remove old locations and create a new one.
4) Create new event to asign it the new location, but the dropdown doesn’t show the new location (is empty).
Thank you for you time. Really, this is my first contact with EM and I’m about to leave it! I’m experienced a lot of problems with it.
Forum: Plugins
In reply to: [Events Manager - OpenStreetMaps] WPML incompatibleHi, Patrick. Thank you for the quick answer!
I’ve checked and it happens only when edit events. So, meanwhile I can first create locations and, then, assign it to events.
Forum: Plugins
In reply to: [Event Organiser] How to display event category name?Just remember that event category is a custom taxonomy called event-category, not the default category taxonomy:
<?php $cats = wp_get_post_terms($event->ID, 'event-category'); if ($cats) { ?> <ul> <?php foreach ($cats as $cat) { ?> <li> <?php echo $cat->name; ?> </li> <?php } ?> </ul> <?php } ?>
- This reply was modified 6 years, 9 months ago by Aitor Méndez.
Forum: Plugins
In reply to: [Event Organiser] Adding custom taxonomy to event post typeThank you for the advice, Gillermo. I already have my custom taxonomy in a mu-plugin
??