You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: fix redirect mode for payment methods and description field visibility
- Fix Credit Card settings filter name from 'wc_monei_settings' to 'wc_monei_cc_settings'
- Fix JavaScript selector for Credit Card description field (gateway ID is 'monei' not 'monei_cc')
- Fix redirect_flow logic across all gateways (parentheses placement in empty() checks)
- Fix hide_logo, hide_title, enabled, and tokenization logic (same parentheses bug)
- Add redirectFlow flag support to PayPal and Bizum Blocks checkout
- Pass description field to Blocks for redirect mode display
- Standardize description display in redirect mode across all payment methods
- Remove description field from Apple/Google Pay (doesn't support redirect mode)
The redirect mode was never working due to incorrect boolean expression:
Before: ! empty( $option && 'yes' === $option )
After: ! empty( $option ) && 'yes' === $option
0 commit comments