Krokedil
Forum Replies Created
-
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] How do I configure countries in playground?Closing this ticket, but please let us know if any further support is needed.
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Checkout not show before extra refreshClosing this ticket, but please let us know if any further support is needed.
Closing this ticket, but please let us know if any further support is needed.
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Admin Email notificationClosing this ticket, but please let us know if any further support is needed.
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Klana Checkou “API Error ” Page IssueClosing this ticket as hopefully the answer solved the issue, but please let us know if any further support is needed.
Forum: Plugins
In reply to: [Nexi Checkout] Payment amount is without taxHi,
The plugin do take into consideration whether the price is entered with or without tax. When having the setting you showed in the image checked, the price you enter for the product includes the tax. With that said, the price you enter for the product in WooCommerce, will be the final price (including tax) that shows in the checkout.
Best Regards,
Kristian AnderssonForum: Plugins
In reply to: [Nets D2 for WooCommerce] Order is declined by DIBS but still went through.This issue is continued in the Krokedil support mail. Closing this thread.
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Klana Checkou “API Error ” Page IssueHi,
Can you try and renew/get-new api keys and try again?
Andreas
Forum: Plugins
In reply to: [Klarna for WooCommerce] Klarna payment method doesen’t showing upClosing this as it’s handled in the regular support.
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Product imageHi,
I tried a solution from:
https://stackoverflow.com/questions/52009122/displaying-product-thumbnail-and-attribute-in-woocommerce-cart-and-checkoutThis worked fine when running the Storefront theme at least:
// Product thumbnail in checkout add_filter( 'woocommerce_cart_item_name', 'product_thumbnail_in_checkout', 20, 3 ); function product_thumbnail_in_checkout( $product_name, $cart_item, $cart_item_key ){ if ( is_checkout() ) { $thumbnail = $cart_item['data']->get_image(array( 70, 70)); $image_html = '<div class="product-item-thumbnail">'.$thumbnail.'</div> '; $product_name = $image_html . $product_name; } return $product_name; }
Then you will need to style it to.
Code goes in functions.php file of your active child theme (or active theme).
Make sure you test this in a test environment before you apply it to your Live site and always keep backups on your files and database.
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] klarna Fields validationHi,
I replied 4 days ago, can you check your inbox or spam-box for it again?
Andreas
Is it the same if you open it in a incognito browser window? Is it still a field in the Checkout editor plugin btw? Check that too. So that isn’t showing the field.
Andreas
Hi,
You should be able to change the fields visibility in the Themes Appearance in the Customizer. It should be under the Checkout in the menu.
Otherwise my guess it’s the theme that is missing the phone translation. Have you tried to see if the theme is translated?
Andreas
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Extra custom fieldsAt this point we do not know a way to do this but feel free to try and see if you can come up with a solution.
Andreas
Forum: Plugins
In reply to: [Klarna Checkout for WooCommerce] Extra custom fieldsHi,
We have written an article about this in the documentation:
https://docs.woocommerce.com/document/klarna-checkout-extra-checkout-fields/So that will help you in the right direction if you want to add Extra Checkout Fields.
Cheers
/Andreas