forevah
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Attachment for WooCommerce] Links stopped working recentlyHi,
The option “Show on Product page” is not visible.
Only when creating NEW attachments, but for existing, this option is not in the list.
Could that be the cause?Thanks for your help!
- This reply was modified 5 years ago by forevah.
Forum: Plugins
In reply to: [Product Attachment for WooCommerce] Links stopped working recentlyHi,
I have the same problem.
When creating a product with 2 attachments -> only 1 of them is displayed.
And with other products nothing is displayed.The strange thing is that everything worked perfectly earlier (before upgrading).
I also downloaded your latest development version and tested with that, but no fix.
Hope you can help, Thanks,
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Mollie doesn’t autocomplete ordersHi Guido,
You are right about the “completed” state (I meant that instead of paid). But it keeps being ‘pending’ instead of completed.
Could it be caused by test-mode of Mollie or the redirect-error mentioned here: https://www.ads-software.com/support/topic/problem-with-checkout-on-polylang-enabled-webshop-redirect-404/If you test it with PolyLang, does it work?
Thanks for your help
Forum: Plugins
In reply to: [Mollie Payments for WooCommerce] Mollie doesn’t autocomplete ordersThe autocomplete plugin should indeed just change the order status in Woocommerce to paid but it doesn’t.
Steps to reproduce:
1. Buy something & go to checkout
2. Pick any Mollie payment method
3. On Mollie website, mark order as ‘paid’ (test mode)
4. (Mollie redirects back to the website*)
5. A success message screen appears
6. Problem: order is NOT marked as ‘completed’ in WooCommerce (it still is ‘pending’ there)* It might be related to another bug for multilingual shops: https://www.ads-software.com/support/topic/problem-with-checkout-on-polylang-enabled-webshop-redirect-404/
I ‘fixed’ it with a .htaccess rule
# Quick fix/hack for the Mollie redirect problem:
RewriteEngine On
RewriteRule ^nl/wc-api/(.*)$ /wc-api/$1 [R=301,L]
RewriteRule ^fr/wc-api/(.*)$ /wc-api/$1 [R=301,L]
RewriteRule ^en/wc-api/(.*)$ /wc-api/$1 [R=301,L]
# Add more languages if needed…