vreemt
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Payment gateaways disabledYou may want to check the settings for Payment Gateways in WordPress admin. Go to WooCommerce > Settings > Payments and make sure the gateways you are using (eg Stripe) are enabled and not in test mode. Like @ckadenge said, which gateways are listed and active/enabled/in test mode depends on those individual extensions (they’d need to be installed and active, which is visible on the Plugins page).
The error message suggests a more blanket approach – I don;t think the WC Coming Soon feature has anything to do with it, but maybe a (theme) developer introduced a filter to automatically turn off all payment methods?
Hope that helps.
- This reply was modified 5 months ago by vreemt. Reason: possible theme filter
Instead of editing all forms, you can also use the translation filter to specify a message without html – see also https://ninjaforms.com/docs/edit-translate-fields-marked-required/
add_filter( 'ninja_forms_i18n_front_end', 'my_custom_ninja_forms_i18n_front_end' ); function my_custom_ninja_forms_i18n_front_end( $strings ) { $strings['fieldsMarkedRequired'] = 'Fields marked with an * are required'; return $strings; }
if it helps, we;re using the following
Ninja Forms Version 3.8.3
Ninja Forms – Conditional Logic Version 3.1
Ninja Forms – File Uploads Version 3.3.16
Ninja Forms – Layout & Styles Version 3.0.29- This reply was modified 10 months, 1 week ago by vreemt. Reason: added add-ons and versions