eclev91
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Notification Bar] Move Bar To Bottom@wpexplorer yes to all, and you got my last comment.
Funny you mention that trick to track down a hook. I did something nearly identical myself in another situation.
Saw the update and it’s much appreciated!
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Checkout Page Payment Options OrderForum: Plugins
In reply to: [WooCommerce PayPal Payments] Checkout Page Payment Options Order@joostvandevijver The issue is that the Credit Card half of this plugin doesn’t inherit the order of the main PayPal gateway the plugin provides and places into the drag-and-drop orderer. WooCommerce core’s logic puts any gateway without a configured order at the end of the available gateways when checking out.
See WooCommerce core class WC_Payment_Gateways::init().
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Checkout Page Payment Options Order@joostvandevijver Ah, there is an iframe once you select the “Credit Cards” option, but we’re talking about a layer above that, which WooCommerce handles. The order in which the available payment methods are displayed.
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Checkout Page Payment Options Order@joostvandevijver Not sure what you’re talking about, but there is no iframe on the WooCommerce checkout screen when using this plugin. There is an HTML form element.
I’ve enabled the Card Processing option for PayPal, via this plugin, but it does not appear in the collection of available payment methods to drag-and-drop around. Instead, it seems to be force-added to the end of the list on the front end.
- This reply was modified 4 years, 9 months ago by eclev91.
Forum: Plugins
In reply to: [Easy Notification Bar] Move Bar To Bottom@wpexplorer If you exposed the Easy_Notification_Bar via a global var, someone could do something like this:
global $easy_notification_bar; // Plugin author would have to make this available. if(has_action('wp_body_open', [$easy_notification_bar, 'display_notification'])) { remove_action('wp_body_open', [$easy_notification_bar, 'display_notification']); add_action('wp_footer', [$easy_notification_bar, 'display_notification'], 999); }And then the CSS to override is:
.easy-notification-bar--sticky { bottom:0; }Support for that could probably be built in via a setting, too. Though it doesn’t handle AMP, which the plugin does.
YMMV though, since not every theme is guaranteed to put their
wp_footer()call just before</body>. Though how different is that gotcha than the “your theme may not do wp_body_open” gotcha.Forum: Plugins
In reply to: [Cloudflare] Plugin admin interface broken in 4.5.1If you’re using an API key that doesn’t have the correct permissions, it can cause this. The plugin doesn’t gracefully handle that error message. I, specifically, had defined my API key via the constant.
This article has instructions for generating the correct kind of API key.Forum: Plugins
In reply to: [Cloudflare] Plugin admin interface broken in 4.5.1Same issue here :/
Forum: Plugins
In reply to: [WooCommerce PayPal Payments] Checkout Page Payment Options OrderHey @aweissinpsyde, your code is fine for changing the default selected option, but we should be able to reorder the options as OP asked.
I don’t know what you’re talking about with an iframe. There is no iframe. There’s just the WooCommerce checkout form.
Forum: Plugins
In reply to: [Category Order and Taxonomy Terms Order] Object cache not clearedHi @tdgu, was it verified that this works now? I’m still seeing this issue.
Forum: Plugins
In reply to: [Custom Taxonomy Order] Compatibility with Redis cacheNope, wrong plugin, sorry.
Forum: Plugins
In reply to: [HUSKY - Products Filter Professional for WooCommerce] PHP 8 warningsI look forward to an update that resolves this. Thanks!
Forum: Plugins
In reply to: [Themify - WooCommerce Product Filter] PHP 8 deprecationsI’m not leaving up a live site with PHP notices, ha! This is in my development environment to ensure these things are ironed out before I deploy PHP 8 to any production environments.
The reason for the notices is pretty self-evident in the messages, and enabling PHP 8 in a dev environment should trigger them. I look forward to an update.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] No events trackedClosing
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] No events trackedI figured it out, it’s the Complianz plugin we use for our cookie banner.
Gonna fiddle with it to determine the best settings to allow someone to enable cookies.