newshop
Forum Replies Created
-
Ok, I’ll go for the simplest solution as I dont know how to handle it otherwise.
Thank you very much!Hello @mrclayton
ok, thanks.
I’ve since discovered that the cause of the error message wasn’t the renaming of the fields at all, but the Flexible Checkout Fields plugin itself (it just made the required fields optional via css, so Klarna complained anyway altough the other payment methods worked, dont really understand that but when I disable the plugin everything works fine). So I will uninstall the plugin and change the order via functions.php.So that means I could theoretically return to my original plan and rename the company field to “additional address” – not sure if that really makes sense though. Because then Stripe would get the information “Company: additional address data”, right? And if I add a whole new field instead of modifying the company field, Stripe probably wouldn’t get that info at all since my custom field isn’t a standard field, right?
Bottom line: if I need an Additional Address field, it would be the safest way to leave all the fields as they are and just rename “Street address” to “Street address and house number”, hoping that the customers notice it, right?
- This reply was modified 4 years, 9 months ago by newshop.
Hi @mrclayton
yes thats why I renamed the address_2 field to house number but as I also need an additional address field (needed for some German addresses and all Spanish addresses as they enter the province there) I had to rename the company field to additional address…but it seems that this is not a good idea when using payment providers, so I’ll need to revert back everything.
Thank you for your support!Hi @mrclayton
thank you very much for your fast reply.
The problem is that I wanted to have a seperate field for house number because by default street and housenumber are one single field – this is very confusing for Germany and leads to people forget to enter the house number.So, I could try to add the house number as an additional field instead of modifiying the existing ones but I guess that will have unintended consequences too, right? Because Klarna & Co. only grab the information from the default Woocommerce fields?
If so, I think I have to go back to the default fields and hoping that Woocommerce will introduce the seperate house number field one day…Kind regards from Germany
Forum: Themes and Templates
In reply to: [Neve] Missing closing div in product loopHello?
Forum: Themes and Templates
In reply to: [Neve] Empty a tag after nv-card-content-wrapperHello? This is still not resolved..
@zpaparidis Ich habs nicht hinbekommen, bin an der Sache mit dem nonce/hash gescheitert.
Aber da ich mit diesem Plugin einfach nur Probleme habe, die hier so gut wie nie gelöst werden (diese Content Security Meldung hat JEDE Seite, die dieses Plugin nutzt und das schon seit Jahren – auch hab ich ständig Probleme mit Zahlungsabbrüchen seit ich dieses Plugin nutze), wechsele ich jetzt zu Stripe (plus das “normale” PayPal über Woocommerce).
Super einfache Integration, keine einzige Fehlermeldung, alles läd schnell, keine unnötigen Skripte, die auf jeder (!) Seite geladen werden und die Seite langsam machen, zig integrierte Zahlungsdienste und sogar günstigere Konditionen.Schade, habs echt oft und lange versucht, aber bin einfach nur unzufrieden mit dem schlechten Support seitens “PayPal Plus for Woocommerce”.
- This reply was modified 4 years, 9 months ago by newshop.
Hi @stoyangeorgiev
ok I see, thank you. Although for onlineshops with customer login it would be a good feature. Guess it’s hard to combine good security with good user experience 🙂Forum: Plugins
In reply to: [Germanized for WooCommerce] Pay Now Button nur falls Zahlungsart PayPalAch ja super, vielen Dank!
Ok, danke. Ich lasse den Thread mal geöffnet, wäre super wenn du hier das Entwickler-Feedback teilen könntest.
- This reply was modified 4 years, 9 months ago by newshop.
Ich bin dem Problem bisher soweit auf die Schliche gekommen, dass man wohl einen Content-Security-Policy-Header mit einem nonce- oder hash-Parameter hinzufügen muss, da das Script sonst in Firefox blockiert wird.
Da aber als Laie durchzublicken ist echt nicht einfach und frisst verdammt viel Zeit. Daher wäre es echt hilfreich, wenn das auch seitens der Plugin-Entwickler mal ernst genommen wird, sonst werde ich doch wieder auf der “normale” PayPal umsteigen müssen.Es kommt eindeutig von PayPal Plus. Es verschwindet sobald ich PayPal Plus deaktiviere und ist wieder da wenn ich es aktiviere.
Außerdem liegt der Code dazu in eurem Plugin (\woo-paypalplus\src\Assets\AssetManager.php ab Zeile 162):private function enqueuePayPalFrontEndScripts() { list($assetPath, $assetUrl) = $this->assetUrlPath(); wp_register_script( 'bluebird', 'https://cdn.jsdelivr.net/npm/bluebird@3.5.3/js/browser/bluebird.js', [] );Jetzt nochmal extra ein Plugin zu installieren nur um die unnötig geladenen Skripte von PayPal Plus zu deaktivieren (zumal ich den Bluebird Bezahlservice nirgends aktiviert habe da ich ihn nicht brauche) erscheint mir nicht besonders sinnvoll. Dann lieber per Action über die functions.php.
Aber eigentlich sollte es doch von Plugin-Seite aus so konfigurierbar sein dass es
1. Überhaupt erst aktiviert wird wenn dieser Bezahlservice angeboten wird und
2. Nur auf den Seiten geladen wird, wo es auch benötigt wird.Hallo @aweissinpsyde
Die Meldung war bis gerade noch da (php 8, alles Plugins, Themes und WordPress auf neustem Stand). Hab dann auf “Nicht wieder anzeigen” geklickt und hoffe, dass sie jetzt weg bleibt. Aber diese Meldung hab ich ja nur so nebenbei erwähnt. Das Hauptproblem ist die Fehlermeldung in der Firefox-Konsole – diese erscheint immernoch.Forum: Themes and Templates
In reply to: [Neve] Missing closing div in product loopHello,
just updated to version 3.0.2, cleared the cache and noticed that the closing div for “nv-product-image” class is still missing although it should be fixed due to the changelog (“div tag isn’t closed for products on the shop page”). 🙁
Could you please fix this and release it as a patch?
That would be really appreciated.- This reply was modified 4 years, 9 months ago by newshop.
Ok, got it. Here it is in case someone is trying the same:
add_filter( 'woocommerce_localisation_address_formats', 'woocommerce_custom_address_format', 20 ); function woocommerce_custom_address_format( $formats ) { $formats[ 'DE' ] = "{name}\n{address_1} {address_2}\n{company}\n{postcode} {city}\n{country}"; return $formats; }