HugoN
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Variable product error message displayThanks Mike!
Forum: Plugins
In reply to: [WooCommerce] Variable product error message displayI have no knowledge in javascript and jqueries, could you give me some tipps?
Forum: Plugins
In reply to: [WooCommerce] Variable product error message displayhttps://www.dropbox.com/s/4syz81kd1po9wvm/image.JPG?dl=0
This message shows up when you have not selected an option and want to put something into the cart. It means that you need to make a selection first – which is fine, but the message still shows up once you have chosen an option. You still can proceed and the product is added to the cart, but it would be more customer friendly if the message disappears as soon as the customer has clicked on an option.
Hi,
könntest Du mir vielleicht kurz sagen, was ich falsch mache? Ich habe es geschafft, Text über den Button zu fügen, aber der Text wird jetzt IMMER in allen Emails des Kunden gezeigt, also auch in der “Order completed”-Email z.B. …ich hab folgendes:add_action( 'woocommerce_email_before_order_table', 'add_order_email_instructions', 0,2 ); function add_order_email_instructions( $order, $sent_to_admin ) { if ( 'paypal' == $order->payment_method && !$sent_to_admin && !$order->has_status( 'on-hold' ) ) { echo 'Mein Text'; } }Vielen Dank für alles,
HugoOkay, danke. Meinst Du, Ihr werdet das in Zukunft implementieren?
Und was mir auch aufgefallen ist: Wenn ein Kunde bei Paypal NICHT zahlt, aber auch nicht auf Abbrechen klickt, sondern einfach das Fenster z.B. wegklickt, und dann wieder auf die Shopseite geht, ist der Warenkorb immer noch gefüllt…obwohl er ja die Bestellung rechtlich gesehen abgeschlossen hat.
Ich habe es mit Pseudoselektor versucht:
.button.wc-gzdp-order-pay-button:before{content:"Mein Text";}aber es funktioniert nicht…
Hallo nochmal,
ich verstehe die Logik mit dem Jetzt zahlen Button und finde es an sich eine gute Option. Wäre es möglich, dass Ihr darüber einfach noch einen Text setzt “Falls Sie Ihre Zahlung mit Paypal noch nicht getätigt haben, können Sie dies unter folgendem Link tun” oder so ähnlich? Das wäre super!1. Siehst Du eine andere Möglichkeit, die Bnkdaten und Anleitung NUR bei Vorkasse von der EMail zu entfernen?
2. Naja, passieren tut schon was: Der Kunde wird zurück zur Dankeseite gesendet und versteht nun nicht, wieso ihm dort für seine Bestellung gedankt wird(und er auch eine Email erhält), obwohl er seiner Meinung nach doch den Vorgang abgebrochen hat…
Danke. Mir sind aber noch 2 Sachen aufgefallen:
1.in der customer-processing-email den “before_order” teil auskommentiert, weil ich dort nicht die bankinfos und zahlungsanweisung bei Vorkasse haben wollte(damit der Kaufvertrag nicht sofort zustande kommt, sondern erst mit einer 2.Email). Somit wird aber auch nicht der Jetzt Kaufen-Link inder customer-processing Eamil angezeigt, wenn der Kunde mit Paypal zahlt. Gibt es da eine Möglichkeit, ihn trotzdem anzuzeigen?
2. Ich habe die Option aktiviert, dass die Bestelkung bei Paypal nicht abgebrochen werden kann, aber trotzdem ist auf der Paypalseite dann ein Link zu sehen “Abbrechen und zurück zu ….shop”. Ich benutze allerdings nur die Sanboxfunktion zur Zeit, kann es daran liegen?
Ah, okay. Es gibt nicht die Möglichkeit, den Button nur anzeigen zu lassen, wenn die Zahlung bei Paypal noch nicht erfolgt ist?
Und noch eine kurze Frage: Funktioniert Germanized(auch in der Proversion) zusammen mit Paypal Plus? Das ist ja seit kurzem erhältlich.
Vielen Dank!Forum: Plugins
In reply to: [Cachify] Woocommerce/robots/prime cachehi Pascal,
thanks, I didn’t think I would ever get an answer on this…
Actually, Woocommerce automatically sets a nocache to cart and checkout pages!
Could you please let me know if it possible to prime the cache? This was my first question.
Thanks!Forum: Plugins
In reply to: [WooCommerce] Don't display stock statusHi,
I am not using a SEO plugin and would like to do it manually.Forum: Plugins
In reply to: [WooCommerce] Don't display stock statusOkay, I will give this a try, thanks! Just one thing that I was also wondering: Where/how can I set meta title and met description for individual products?
Thank you very much for your support.
Forum: Plugins
In reply to: [WooCommerce] Don't display stock statusYou mean
.product p.stock{display:none;}Also, I have another question. I would like to use Autoptimize for minifying and defering js and css, and this only works well when pages are also cached. Since Shop pages never get cached, I would also like to exclude the shop pages from Autoptimize. There is a function I found on their support forum
add_filter('autoptimize_filter_noptimize','my_ao_noptimize',10,0); function my_ao_noptimize() { if ((strpos($_SERVER['REQUEST_URI'],'cart')!==false)||(strpos($_SERVER['REQUEST_URI'],'checkout')!==false)) { return true; } else { return false; } }but this does not work. Dou know how I could get this to work?
Forum: Plugins
In reply to: [Autoptimize] Script loadingI guess trial and error 😉