f10w
Forum Replies Created
-
Vollkommen richtig, die Grundpreis Daten waren fehlerhaft gepflegt.
Danke für den Tipp.
I know its not your plugin, but i got the same problem here. Fixed it like that:
https://docs.woocommerce.com/document/amazon-payments-advanced/#section-17
Click the Link > go to GlotPress https://translate.wordpress.com/projects/woocommerce%2Fwoocommerce-gateway-amazon-payments-advanced%2F1.6.0/ > choose your language (in my case DE) > export the .po and .mo file > rename it to woocommerce-gateway-amazon-payments-advanced-de_DE > put it in your languages/plugins/ WP folder
I don’t know if it needs to be this complicated, but it worked…
- This reply was modified 5 years, 3 months ago by f10w.
Same here, console says …
/plugins/wp-piwik/proxy/matomo.js net::ERR_ABORTED 404 (Not Found)
Btw, I’m using bedrock with another folder structure. But I don’t think this causes the error.
Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] White stripe under the footeras I said, it’s an quick and dirty fix and not the best solution. add this script to your footer or use a plugin for this. keep in mind that this script has a jQuery depency, so maybe want to you use vanilla JS here:
var images = document.getElementsByTagName("img"); for (var i=0; i < images.length; i++ ) { var src = images[i].src; if ( src.startsWith("https://deutschepostag") ) { images[i].style.display = "none"; } }
unfortunately the update to
1.3.4
did not fix this. so we’ll have to wait…Forum: Plugins
In reply to: [DHL Shipping Germany for WooCommerce] White stripe under the footerran into the same problem. thats my quick and dirty fix for today:
$('img').each(function() { var src = $(this).attr('src'); if ( src.startsWith('https://deutschepostag') ) { $(this).hide(); } });