rafaelup
Forum Replies Created
-
Forum: Plugins
In reply to: [Germanized for WooCommerce] Keine Versandart mehr wählbar nach UpdateOK, danke für das Angebot! Alle folgenden Screenshots mit Version 3.15.5 aufgenommen, weil wir nur eine Live-Umgebung haben und wir gerade verkündet hatten, dass der Shop wieder funktioniert.
Versandzonen:

als Beispiel Versandzone Deutschland, ich hatte auch mit Adressen in Deutschland getestet



Wir nutzen nicht die Integration zu Versanddienstleistern und haben auch nicht wirklich Verpackungen angelegt. Das hier sollte die Standard-Konfiguration sein:

Die Produkte haben auch keine Abmessungen hinterlegt, nur Gewichte. Ist das ein Problem? Wir haben das erst vor kurzem so eingerichtet und waren froh, dass es nicht noch komplizierter wurde, und es hatte funktioniert bis Version 3.15.5.
Das Problem trat mit der neuen Version z.B. bei einem Heft mit 160g Gewicht auf, wo mir die alte Version einen Brief für 2,50€ anzeigt, aber auch bei einem größeren Warenkorb mit vielen Artikeln, für den mit der alten Germanized-Version ein Paket für 11,50€ angezeigt wurde.
In dem Plugin “Conditional Shipping Rules” haben wir nur eingestellt, dass die Versandmethode Brief deaktiviert wird, wenn das Produkt Poster im Warenkorb liegt.
- This reply was modified 2 years, 3 months ago by rafaelup. Reason: URL Screenshot korrigiert
Forum: Plugins
In reply to: [Germanized for WooCommerce] Keine Versandart mehr wählbar nach UpdateDanke für die schnelle Antwort.
Ich habe mal kurz Germanized deaktiviert, da waren meine Versandarten weg. Also ja.Please @wpclever, can you add this to the next version? I don’t want to add it after every update, and I think it makes sense in all use cases, to not leave the name-your-prize field empty!
adding required to line 154
size="4" required />Forum: Plugins
In reply to: [WPC Name Your Price for WooCommerce] Allows zero and negative pricing@yousuft
I just realized that the check for “not empty” is even super easy nowadays, just needed to edit wp-content/plugins/wpc-name-your-price/includes/wpc-woonp-core.phpadding required to line 154
size="4" required />hope this can be included in the next version @wpclever , I think it should fit to all use cases ?!
The “not negative” check can be accomplished by adding a minimum value in the product pricing, but I guess it would make sense to add this to the code. I would do it like this:
if (!is_numeric ( $woonp_min ) ) { $woonp_min = 0; }
in line 109@snapdragon777
I just realized that this check for “not empty” is even super easy nowadays, just needed to edit wp-content/plugins/wpc-name-your-price/includes/wpc-woonp-core.phpadding required to line 154
size="4" required />hope this can be included in the next version @wpclever , I think it should fit to all use cases ?!
@wpclever thanks for merging my proposal into the new version!
@snapdragon777 thanks for your thoughts!I don’t have a suggested price set, so this feature is using the “regular price” that WooCommerce requires in a product listing to give me a suggested price.
@snapdragon777 but then isn’t the real “bug” here that the whole name-your-price field is not showing up when you don’t have a regular price set? To me it doesn’t seem required by woocommerce but by the plugin ?!
maybe @wpclever can clarify this. thanks!!I had the same problem but since I have a suggested price, I thought the suggested price should at least become the default for the name-your-price input.
Solved it by editing wp-content/plugins/wpc-name-your-price/includes/wpc-woonp-core.php
changing line 114
from
}
toelse { $value = $product->get_regular_price(); }