nejcox
Forum Replies Created
-
Forum: Reviews
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] Custom validationBlank
Forum: Plugins
In reply to: [Checkout Field Editor (Checkout Manager) for WooCommerce] Custom validationBlank
My final suggestion is this one:
Since Twilio (and I assume other providers also) want phone numbers in international format (e.g. +44 or +386) it would be great to have an option to do THIS, a phone number converter /merger. Which could be part of your custom field editor / validator.Adding Name and Surname to Editor user role worked for my editor. WP Bakery is showing now. Didn’t need any plugins.
Forum: Fixing WordPress
In reply to: Block editor no longer working: only shows HTMLAdding Name and Surname to Editor user role worked for my editor. WP Bakery is showing now. Didn’t need any plugins.
What I would also love to see is that under “Outcomes” number of order is given and not just a customer’s name.
Forum: Plugins
In reply to: [Extra Fees for WooCommerce] Text instead of an amountIt basically does what I wanted but now the confirmation page says 0,00 instead of text. ??
Forum: Plugins
In reply to: [Extra Fees for WooCommerce] Text instead of an amountThis worked even better as it removes amount. But unfortunately the amount value is lost.
add_filter(‘woocommerce_cart_totals_fee_html’, ‘show_positive_fee_value’, 10, 2 );
function show_positive_fee_value($cart_totals_fee_html, $fee) {
if($fee->name === ‘TEXT’) {
$cart_totals_fee_html = ‘TEXT (FREE)’;
}
return $cart_totals_fee_html;
}Forum: Plugins
In reply to: [Extra Fees for WooCommerce] Text instead of an amountSolved with some tinkering. But needs also some CSS.
add_filter(‘woocommerce_cart_totals_fee_html’, ‘show_positive_fee_value’, 10, 2 );
function show_positive_fee_value($cart_totals_fee_html, $fee) {
if($fee->name === ‘TEXT’) {
$cart_totals_fee_html .= __(‘TEXT’) . ‘<br />’;
}
return $cart_totals_fee_html;
}Forum: Plugins
In reply to: [WooCommerce Stripe Payment Gateway] Checkout box doesn’t mention debit cardsThe Maestro logo is missing because WooCommerce doesn’t support it, even though Stripe does.
Stripe should support Maestro also in Slovenia, where I’m using the extension, because they have Maestro’s logo on Slovenian Stripe page: https://stripe.com/en-si/pricing
Cardinity payment gateway works fine with Maestro (it recognizes it), but WooCommerce for Stripe does not. Also there is no logo for Maestro.
Maestro’s card number is longer than the standard xxxx-xxxx-xxxx-xxxx.
So yes, I’m experiencing difficulties with accepting Maestro on my site.
Stripe’s reply:
“Alec from Stripe Support here – thanks for reaching out!I see that you’re trying to integrate Maestro payments into your WooCommerce site. It would be best to contact them about that integration as it may require a specific plugin on their end. You can contact them here: https://woocommerce.com/contact-us/”
But I’m not so sure anymore. On Stripe dashboard:
“Cards Live
Accept Visa, Mastercard, and American Express payments from customers worldwide.”
Maestro is not mentioned here.