The Generation
Forum Replies Created
-
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Organization Number for printing.Hi,
Since “company_reg_number” is a custom field and not present in the WooCommerce default checkout there won’t be any plug’n’play solution if the plugin creators
However by adding the fields as in the example above it should work just fine and we have no preferences or recommendations regarding any other plugins for that functionality.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Organization Number for printing.Hi,
We haven’t used this plugin before, but judging from the example, the following code should work:
function add_company_registration_number_to_wcdn( $fields, $wc_order ) { $new_fields = array(); $reg_nr = $wc_order->get_meta( '_svea_co_company_reg_number' ); if( ! empty( $reg_nr ) ) { $new_fields['company_reg_number'] = array( 'label' => 'Company Registration Number', 'value' => $reg_nr, ); } return array_merge( $fields, $new_fields ); } add_filter( 'wcdn_order_info_fields', 'add_company_registration_number_to_wcdn', 10, 2 );
It’s important to note that this code should be placed in a child theme’s functions.php file or another location that won’t be overwritten during updates. This ensures that your customizations remain intact when the theme or plugins are updated.
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] New feature – where is it?Hi,
Currently, it is only possible to send an SMS, and it is sent via Svea. For any potential changes to its appearance, you would need to contact them.
The order should automatically update if a customer completes a purchase using the link from the SMS. Could you check if the payment status is marked as pending or similar in Payment Admin? If the payment shows as completed in Payment Admin but not in WooCommerce, we would need more information about the payment, and I would recommend that you submit a support request to us at [email protected]
Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] notes field ca’nt be hiddenJust wanted to follow up on this. Could you please try the latest version and see if your code works?
We’ve tested it on our end but would like a confirmation from you as well.
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Check out not workingHi again,
I can also see that you have put the checkout on the cart page. I strongly recommend that you separate the cart and checkout pages as it might create a conflict in the functionality.
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Check out not workingHi andzei,
You seem to be loading jQuery twice on your webpage – version 3.7.1 which is default in WordPress and also 2.2.4:
<!-- Bootstrap core JavaScript================================================== -->
<!-- Placed at the end of the document so the pages load faster --><script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
Can you remove the above code which seems to be added in your theme?
- This reply was modified 1 month ago by The Generation.
- This reply was modified 1 month ago by The Generation. Reason: Formatting
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Wrong price cart and pluginFor future reference: We’ve had contact with John and these problems have not occurred since 3.0.
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] New update not workingThis issue is fixed in the new 3.0-version coming soon.
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] New update not workingOkay! Could you please send an email to [email protected]?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] New update not workingThank you!
By looking at the logs, these are the order rows that create a miss match between Svea and WooCommerce. Thus, making the order fail.
- Aktiviteter 375
- Mat 245
- Underh?llning 750
Do you have a specific plugin adding these order rows?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] New update not workingTo find the Svea Checkout plugin logs in WooCommerce, follow these steps:
1. Log in to your WordPress admin panel.
2. Navigate to WooCommerce > Status > Logs.
3. Look for “svea_checkout” in the list.Once found, copy the log content and share it here (remember to remove any sensitive information).
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] New update not workingAre you referring to version 2.8.11? The only change we have made since 2.8.10 is related to edge-case scenarios with B2B-shipping.
Do you have any log messages at the time of the error?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Wrong price cart and pluginI see, could you please send an e-mail to our support at [email protected]?
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Wrong price cart and pluginHi,
That sounds very resonable. We’ll have a look at this and see if we could do anything about it.
Would it be possible for the store to use increments of 1 in the meantime?Best regards
Forum: Plugins
In reply to: [Svea Checkout for WooCommerce] Unable to checkout when amount is zeroHi,
In order to make it possible to check out with a zero amount in the checkout, you need to contact Svea so they can help you enable the setting on their end as well.
Best regards