davidgimenez
Forum Replies Created
-
Forum: Plugins
In reply to: [Wallet for WooCommerce] payment gateway not availableHello, after updating WooCommerce to the latest version, your plugin stopped working. The payment gateway no longer appears under WooCommerce settings → Payments, and it also does not show up at checkout to pay with credits.
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Card form styleand what does the design of your plugin have to do with the theme? It doesn’t make sense if you offer the plugin, you tell me that you don’t control it. What a lie this is?
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Card form styleI am using the WooCommerce Storefront theme, but the plugin does not allow modifications, it does not allow anything, everything is loaded via iframe.
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Payment method does not appearHello, the problem with emails and orders in WooCommerce started with your plugin. If I receive payment with another gateway, it is displayed perfectly. Therefore, the problem is with your plugin. There are no conflicts because I tested everything before I contacted you. And I don’t want to hide the buttons to pay with the mobile phone. I want to be able to move them from the place where they are displayed because they are not displayed correctly. I need a hook to remove them and another one to call them in another place.
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Payment method does not appearI also need a hook to hide the options to pay with Google Pay and Apple Pay on the payment page so I can move them to the page where I need those buttons to be displayed because they are currently displayed incorrectly.
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Payment method does not appearThe new order email looks like this: https://prnt.sc/uwuPa9oxM8Ua and in woocommerce in failed orders it looks like this: https://prnt.sc/ywS7jAHsVQCD
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Payment method does not appearI need the card capos to look like this: https://prnt.sc/JJDdv5yCLEeW and not like this: https://prnt.sc/PGCzLjgpTZxO
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Payment method does not appearI already got the plugin to work but I found some errors with the card image in the new order emails, the payment method image is broken and when the order fails, the image in WooCommerce payment method orders also shows html code instead of an image. I would need an email to send you screenshots and I also saw a bug, the fields where the card details are added to pay are too small.
Forum: Plugins
In reply to: [WooPayments: Integrated WooCommerce Payments] Payment method does not appearHello, thanks for answering. I wrote to you by email if you can check.
Forum: Plugins
In reply to: [Ultimate Addons for Elementor] incompatible with mega menu elementor proI already answered your email, check it out.
Forum: Plugins
In reply to: [Ultimate Addons for Elementor] incompatible with mega menu elementor prothe button that opens the elementor pro mega menu is misaligned for a few seconds when entering the page or the page is updated, I don’t have time to take a screenshot because it lasts a second and it was not solved with any update even though I installed all the updates and the problem persists, do I have to reinstall a previous version of elementor pro for it to work properly.
I already deleted it but it doesn’t work on the home page. The same problem still appears.
With the last version of wp-rocket, I aggregate this global css and affect when opening the popup of your add-on, which is not shown when clicking and entering the register.
<style id=”rocket-lazyrender-inline-css”> [data-wpr-lazyrender] { content-visibility: auto; } </style>
wp-rocket add a new function you can see more here that affects your plugin
https://docs.wp-rocket.me/article/1835-automatic-lazy-rendering
add_action(‘init’, ‘custom_redirects’);
function custom_redirects() { global $pagenow;
if (‘wp-login.php’ === $pagenow) { $actions = [‘login’, ‘register’, ‘lostpassword’];
if (!isset($_GET[‘action’]) || in_array($_GET[‘action’], $actions)) { wp_safe_redirect(home_url(‘/change/’));
exit();
} } }