newshop
Forum Replies Created
-
Forum: Plugins
In reply to: [Loco Translate] Translations lost with update woocommerceI am very happy to hear that woocommerce & loco will be compatible because I always have the problem that my custom (german) translations are overwritten. Can you already estimate when the update will be out?
Forum: Plugins
In reply to: [Germanized for WooCommerce] Separate Bestellübersichtseite?Bedeutet keine Antwort dass es die Bestellübersichtseite definitiv nicht für die kostenlose Version bzw für den Onepage-Checkout geben wird?
Ich muss mich in den nächsten Tagen entscheiden ob ich meine Lizenz für German Market verängere oder (was mir lieber wäre) zu Germanized wechsele. Da mein Anwalt allerdings drigend empfiehlt die Bestellübersicht zu integrieren und ich das auch aus Kundensicht wichtig finde, ist das für mich ein entscheidendes Kriterium.
Vielen Dank schonmal und einen schönen Abend!Forum: Plugins
In reply to: [Germanized for WooCommerce] Separate Bestellübersichtseite?Hey,
danke für deine Antwort! Ja die Meinungen gehen wirklich auseinander.
Aber auch abgesehen von der Rechtslage finde ich es als Kunde bei Onlineshops immer schön, wenn ich meine eigegebenen Daten nochmal auf einer übersichtlichen Seite prüfen kann. Das weckt einfach Vertrauen.Ich finde den Onesite Checkout ansich super, aber möchte halt danach nochmal die Bestellübersichtseite so wie sie auch in deinem Multistep Checkout kommt.
Da es diese Seite ja in der Proversion schon gibt – wäre es da nicht ziemlich einfach sie auch in der kostenlosen Variante beim Onesite Checkout als Option zu integrieren?
Dann würde ich sofort zu euch wechseln – versprochen 🙂Habe mich auch bei Google nochmal genau umgeschaut – die zusätzliche Bestellseite ist für viele ein Grund nicht zu euch sondern zu Woocommerce German Market zu gehen. Allein aus dem Aspekt raus sollte das doch eine Überlegung wert sein, oder?
Liebe Grüße!Forum: Plugins
In reply to: [Germanized for WooCommerce] Separate Bestellübersichtseite?Ich habe gerade mit einem befreundeten Anwalt für Internetrecht telefoniert. Eine gesonderte Bestellübersichtseite ist gesetzlich vorgeschrieben. Er verwies mich auch nochmal auf eine Information durch den Händlerbund: https://www.haendlerbund.de/hinweisblaetter/finish/1-hinweisblaetter/99-button-loesung – Seite 6. Auch andere große Händler wie z.B. Zalando halten sich daran.
Dass eure Variante von Trusted Shops abgesegnet wurde ist gut und schön – allerdings bringt einem das im Streitfall auch nichts wenn die Rechtslage anders aussieht. Ich habe gesehen dass es zu diesem Thema schonmal einen Thread gab (https://www.haendlerbund.de/hinweisblaetter/finish/1-hinweisblaetter/99-button-loesung) und sich einige Benutzer diese Extraseite wohl doch wünschen – im Zweifelsfall lieber auf Nummer sicher gehen. Für mich ist das Fehlen dieser Seite leider ein Ausschlusskriterium, ansonsten wäre ich noch heute auf Germanzied Pro umgestiegen.
Wäre es denn denkbar diese Bestellübersicht/-prüfen-Seite zumindest als Option verfügbar zu machen?
Forum: Plugins
In reply to: [WooCommerce] Add product thumbnail to emailsI agree that a thumbnail with 32x32px is indeed tiny and not usefull. But a bigger image (p.e. 100x100px) would be great and very usefull – thats why all big shops integrate thumbnails into mails. So I changed
'$image_size' => array( 32, 32 ),to
'$image_size' => array( 100, 100 ),
But the image is still 32x32px. I cleared all caches and refreshed everything many times.
Could you please tell me how to get the thumnail to 100x100px?
Adding `tbody img {
width: 100px;
height: 100px;
}` to email-styles.php worked but I am not sure if this is the best solution…
Many thanks in advance!Forum: Plugins
In reply to: [WooCommerce] Add product thumbnail to emailsOk, I found this line in email-order-details.php:
'show_image' => false,
When I change false to true, it shows a thumbnail.
But why is it set to false by default? Are there any settings in woocommerce where I can turn it to true instead of editing the template file?
Thank you!Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Share via email adds " " to email subjectJust googled it, the “urlencode” in share.php is the problem:
<a class="email" href="mailto:?subject=<?php echo urlencode( apply_filters...
It transforms space characters into + signs.
When I simply remove the “urlencode” it works and all looks fine but I am not sure if this is ok or if this will cause other problems? Any suggestion how to fix this in a safe way would be really appreciated.And I would like to add some text before the wishlist link in the Email body. How do I have to edit the code to achive this?
Many thanks in advance!
Forum: Plugins
In reply to: [YITH WooCommerce Wishlist] Need to add variation in the wishlistI am very interested in this feature too. Hope you will add it also for the free version 🙂
Many thanks in advance!Ok, got it 🙂
The shortcode must be something like:<?php echo get_the_excerpt($item['prod_id']); ?>instead of
<?php echo get_the_excerpt($product_id); ?>what I used before.
I have the same problem. The /view link causes several problems and should either be removable via a admin setting or you should give us an updatesafe code. Thank you.
Forum: Plugins
In reply to: [WooCommerce] Add product thumbnail to order-details-itemAnyone any idea?
Forum: Fixing WordPress
In reply to: How to make custom strings translatable with Poedit?got it, I had to write my themes name instead of woocommerce for my custom string 🙂
Forum: Fixing WordPress
In reply to: How to make custom strings translatable with Poedit?Hi, many thanks fot your sooon reply!
First: I mean that I try to translate the english custom strings into german, but my backend shows only the english ones.Second: I am using Poedit too. The woocommerce_product_tabs code is just a filter to rename a product tab and there I created the custom string __( ‘CARE’, ‘woocommerce’ ) which I am tring to translate into german.
Do you know what I mean or what my problem is?Forum: Fixing WordPress
In reply to: How to make custom strings translatable with Poedit?Hi, I’ve got exactely the same problem. I succeed to get my custom strings in the .pot and the .po file, but my german translations are not shown up. P.E.
In my childtheme’s functions.php I’ve got this code:add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs ) { $tabs['description']['title'] = __( 'CARE', 'woocommerce' ); // Rename the description tab return $tabs; }The word CARE is after a refresh listed in my .pot and .po and I can translate it:
#: ../royalchildtheme/functions.php:255 functions.php:255 msgid "CARE" msgstr "PFLEGE"But the backend just shows CARE instead of PFLEGE.
Any ideas what I’m doing wrong? Any help would be really appreciated, many thanks in advance!Hi,
I just addedli.payment_method_paypal a { display: none !important;to my childtheme’s style.css