Christopher Mail?nder
Forum Replies Created
-
Forum: Plugins
In reply to: [PayPal Plus for WooCommerce] INVALID_RESOURCE_ID / 404 ErrorsHello Andreas,
Thank you very much for the quick reply.
Initially I researched this topic, because a lot of consumers where reporting blank pages when trying to pay with paypal. Checking the logs then showed 404 errors that day and I assumed this would be the cause of these issues.
I just checked the logs more detailed and compared them with previous days for example. Almost all 404 errors belong to payments that were successfully captured one or two days in advance. Therefore it seems to be correct that these payments cannot be processed again.
However, do you perhaps also have a hint on how to solve the blank page problem? Please excuse the inconvenience.
Best regards,
ChristopherForum: Plugins
In reply to: [PayPal Plus for WooCommerce] Ungültige payment idHello Andreas,
Although I am not the initial creator of this thread, we also have the feeling that more payments cannot be processed during the last months. Checking the log files showed the same errors as above.
Our cart and checkout pages are whitelisted from caching. Is there anything else we have to whitelist maybe?
Best regards,
ChristopherForum: Plugins
In reply to: [PayPal Plus for WooCommerce] “über Paypal” wird nicht angezeigtHi Andreas,
vielen Dank für die Prüfung.
Viele Grü?e
ChristopherForum: Plugins
In reply to: [BBQ Firewall – Fast & Powerful Firewall Security] API requests return 403Thanks again. I really aprpeciate it!
Forum: Plugins
In reply to: [BBQ Firewall – Fast & Powerful Firewall Security] API requests return 403Hi Jeff,
Thank you very much for the incredibly quick answer.
I will try with my colleague.
Forum: Plugins
In reply to: [Amazon Pay for WooCommerce] Fee not transferred and processedHi Adam,
Thank you for the detailed and informative reply.
The plugin is not supported or updated by its creators anymore.
Both solutions look very promising and it might especially be an option to use the 2nd link / function to only add these fees to be processed properly with the Amazon Payments gateway.
Before trying this: Can you confirm that this will be working with this plugin?
I found the following code extracts in the Paypal plugin to handle fees:
protected function _get_total_order_fees( $order ) { $total = 0; $fees = $order->get_fees(); foreach ( $fees as $fee ) { $total = $total + $fee->get_amount(); } return $total; } protected function _get_details_from_order( $order_id ) { $order = wc_get_order( $order_id ); $settings = wc_gateway_ppec()->settings; $decimals = $settings->is_currency_supports_zero_decimal() ? 0 : 2; $rounded_total = $this->_get_rounded_total_in_order( $order ); $discounts = $order->get_total_discount(); $fees = round( $this->_get_total_order_fees( $order ), $decimals ); $details = array( 'total_item_amount' => round( $order->get_subtotal() - $discounts + $fees, $decimals ),
But could not find any similar function within yours. It would be great, if you could confirm that the simple fee addition for all Amazon payments would be working. That would save us a lot of trouble ??
Thanks again!
- This reply was modified 4 years, 6 months ago by Christopher Mail?nder.
Thank you so much for the quick answer. It is coming out now.