The Generation
Forum Replies Created
-
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Critical error on searchHi,
Thank you for reporting this issue, we’ve identified the error and it will be resolved the next release.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Betala i butikHej,
När man klickar på “Andra betalningsalternativ” så svarar butiken med att det inte finns några andra tillgängliga betalsätt.
Används något plugin för att styra tillgängliga betalsätt som eventuellt kan krocka med hur Svea Checkout är uppsatt?
Allt gott!
Forum: Reviews
In reply to: [Svea Checkout for WooCommerce] Svea checkout part payment widgetHi,
Thank you for your feedback!
We will definitely take a look a this as you’re right in that “widget” is a different feature in WordPress.
Best regards!
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Betala i butikHej,
Vi kikade i butiken och det verkar gå att välja det fraktsättet i kassan. Kräver det att man gör något speciellt för att kunna återskapa problemet?
En notering som vi upptäckte dock är att sajten inte verkar använda två decimaler för att göra uträkningar vilket behövs för att moms ska bli korrekt.
Denna inställning bör du redigera under WooCommerce > Inställningar > Antal decimaler till 2.
Om detta resulterar i att priser visas som exempelvis “499.00” så kan du addera följande kod i ditt barntemas functions.php-fil eller annat lämpligt ställe.
add_filter( 'woocommerce_price_trim_zeros', '__return_true' );Allt gott!
Hi,
We’ve noticed that a few stores have some issues with the version 2.7.0 and we’ve released a new version 2.7.1 which we recommend upgrading to. If the problem persist then we recommend temporary downgrading to 2.6.5.
Best regards
Hi,
Is the Checkout ID the same in Svea PaymentAdmin as in WooCommerce?
If there is a missmatch in the Id’s that would result in a completed order getting canceled via a push from Svea.
Are you using the latest version of Svea Checkout for WooCommerce?
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Subscribe to newsletter optinHi,
What plugin and/or code are you using to add the email opt-in?
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Uncaught TypeErrorHi,
We’ll address that issue in the upcoming release 2.7.0 which will be released today or tomorrow.
Best regards
Hi,
Unfortunately this is a design choice made by Svea and they’re not sure how/when they will fix this.
My recommendation is to reach out to Svea directly. The reason it’s happening is because the zipcode is hidden/masked when a customer is recognized via email + zipcode.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] WooCommerce Checkout Page HooksWe’ve added filters on “woocommerce_checkout_fields” which uses the keys “billing”, “shipping” and “order” to include fields.
This is a simple example on how you could use that:
// Add field to checkout function add_custom_checkout_fields( $fields ) { $fields['order']['my_value'] = array( 'type' => 'text', 'label' => 'Label', 'placeholder' => 'Placeholder text', 'required' => false, 'class' => array( 'form-row-wide' ), 'clear' => true, ); return $fields; } add_filter( 'woocommerce_checkout_fields', 'add_custom_checkout_fields' ); // Save entered value on order function save_custom_checkout_fields( $order_id ) { if ( ! empty( $_POST['my_value'] ) ) { $wc_order = wc_get_order( $order_id ); $wc_order->update_meta_data( 'my_value', sanitize_text_field( $_POST['my_value'] ) ); $wc_order->save(); } } add_action( 'woocommerce_checkout_update_order_meta', 'save_custom_checkout_fields' );Regarding the zip-syncing feature we’ve had conversations with Svea about. As of now there is no planned update to change the state of the zip syncing feature nor changes to the shipping. If you’d like more information about this I recommend reaching out to Svea directly.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] WooCommerce Checkout Page HooksHi,
Regarding the hooks we haven’t really rearranged anything at this point. However we’ve added so that fields registered under the “order”-key in among WooCommerce fields will automatically be shown in the checkout and the value follows the checkout as it would in the regular checkout. This makes it so that plugins can add and save field values as normally.
Regarding “zip code issues” are you referring to this matter: https://wordpress.org/support/topic/problems-with-postcode-sync-shipping-alternatives/? If so it’s an issue directly tied to Svea and they’re aware of the issue.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] TranslationsHi,
Thank you once more!
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Order status stuck at Pending PaymentHi,
That is’t necessarily an issue and could all be fine. However if you’d like to send the complete logs you could do so to support@thegeneration.se. You can write in Swedish or English.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Order status stuck at Pending PaymentHi,
Logs can be found under WooCommerce > Status > Logs. If the logs aren’t appearing you could need to turn them on via the setting “Logger, enable logging” under WooCommerce > Status > Logs > Settings
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Order status stuck at Pending PaymentHi,
This usually happens if the website encounters errors when Svea is communicating with the store. Do you have access to any fatal-errors-logs which could indicate if the store throws any errors?
Best regards