Andi
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Deutsche Post Internetmarke] bulk download von pdf labels@drazenbebic: kannst Du hier helfen?
@drazenbebic: kannst Du hier helfen?
Hi Shadi,
but DHL has announced it as coming SOON.
So they have decided that it has to be included soon, or is that wrong? Do the ly?
I would expect when there is such an announcement there should be a roadmap with that feature and that it is in testing, or not?I’m wondering about DHL….
Best Regards
Andi
Forum: Plugins
In reply to: [Amazon Pay for WooCommerce] Pay with Amazon => InvalidButtonAccessRequestok, I don’t know why, but in Sellercentral the JS URL were deleted. After add them again it works now.
A really strange behaviourForum: Plugins
In reply to: [Amazon Pay for WooCommerce] Payments via AmazonPay failsok, after disconnecting and reconnection I got the same probs like the others, so I’ve joined that thread:
https://www.ads-software.com/support/topic/pay-with-amazon-invalidbuttonaccessrequest/#post-14541337
Forum: Plugins
In reply to: [Amazon Pay for WooCommerce] Pay with Amazon => InvalidButtonAccessRequestits here the same prob now:
When contacting Amazon Pay customer service, provide the following information:
Session ID:
Error Code: InvalidButtonAccessRequestBut I’ve found these line in debug.log:
[10-Jun-2021 12:09:41 UTC] xxx – WC_Amazon_Payments_Advanced_Merchant_Onboarding_Handler::check_onboarding_request – Received Onboarding Key Exchage request.
[10-Jun-2021 12:12:51 UTC] yyy – WC_Amazon_Payments_Advanced_IPN_Handler::schedule_hook – Scheduling check for CHARGE xyxyxyxyxyxyxForum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] ID for Administration panelno, in DHL Gesch?ftskundenportal is in the archive a column called “Kostenstelle” or also “Absenderreferenz”, it would be great if that information will be used by this plugin, ’cause we have different user and different shops, that are using the same GKP account, just the system user is different. We do need to filter and split the transferred data by Kostenstelle or user. So we are searching for an option to see easily from whom the label is generated.
Best Regards
Andreas
Forum: Plugins
In reply to: [Contact Form 7] Set Receiver address via parameterThat’s it, many thanks.
It helps wonderful ??it is the same here.
I’ve moved now the */ in the file, but it is just a workaround, not a solution!Forum: Plugins
In reply to: [WooCommerce] Woocommerce: ATTRIBUTE FILTERS DO NOT APPEARI’ve tested it with Version 4.3.3, there was everything fine, just from 4.4 it won’t work anymore…
The Rollback Plugin is a great help, thanks for mention it ??
Best Regards
Andi
Forum: Plugins
In reply to: [WooCommerce] Woocommerce: ATTRIBUTE FILTERS DO NOT APPEAR… it’s the same here.
I will follow this thread, and hope for a solution from automattic.
But first I want to test the rollback-plugin, hopefully it helps ??Best Regards
Andi
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Filter Products by Attribute – Not displayingit seems to be a prob with the new version of WC.
I have the same probs here with all filter options.I’ve got the to be visible on some pages, but they are out of function. You can choose what ever you want, but all products are shown…
Best Regards
Andi
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] Packaging weight per Shipping classHi Shadi,
thanks for that. With this code it works fineadd_filter( 'pr_shipping_dhl_order_weight', 'add_packaging_weight_dhl', 10, 2 ); function add_packaging_weight_dhl( $weight, $order_id ) { $order = wc_get_order( $order_id ); $ordered_items = $order->get_items( ); $weight = 0; $usedShippingclasses=array(); foreach ($ordered_items as $key => $item) { if( ! empty( $item['variation_id'] ) ) $product = wc_get_product($item['variation_id']); else $product = wc_get_product( $item['product_id'] ); if ( $product ) { $product_weight = $product->get_weight(); if( $product_weight ) { $weight += (float) ( $item['qty'] * $product_weight ); if ( $product->get_shipping_class() == 'class_1' && $product->has_weight() && (!(in_array($product->get_shipping_class(),$usedShippingclasses)))) { $usedShippingclasses[]=$product->get_shipping_class(); $weight += (float) 0.2; } elseif ( $product->get_shipping_class() == 'class_2' && $product->has_weight() && (!(in_array($product->get_shipping_class(),$usedShippingclasses)))) { $usedShippingclasses[]=$product->get_shipping_class(); $weight += (float) 0.5; } } } } return $weight; }
Best Regards
Andreas
Forum: Plugins
In reply to: [Contact Form 7] BUG?: Missing the sender emailHello? No one out here?
Forum: Plugins
In reply to: [Contact Form 7] BUG?: Missing the sender emailok, now I’ve found the prob.
I’m processing the form data‘add_action(“wpcf7_before_send_mail”, “wp_cf7_anfrageform_berechnen”);
function wp_cf7_anfrageform_berechnen($wpcf7_data)
{
$submission = WPCF7_Submission::get_instance();
if (!$submission){return;}
$posted_data = $submission->get_posted_data();
$properties = $wpcf7_data->get_properties();… calculate some values …
$email_output = “… some content”;
$properties[‘mail’][‘body’] .= $email_output;
$wpcf7_data->set_properties( $properties );
}’
if I don’t do it, the emailaddress is in the received email, but if I activate my stuff it is deleted.
I think the prob should be the
‘$properties = $wpcf7_data->get_properties();’
and the
‘$wpcf7_data->set_properties( $properties )’
somewhere there the email will be deleted.
Can you help me to figure out why this happens or how else I can add some text to the email body?Thanks
Andi