Tagged: advanced-layout-editor, woocommerce
-
AuthorPosts
-
August 23, 2017 at 3:06 pm #843053
Hi,
leider fehlen im Layouteditor unter “Plugin-Ergänzungen” bei “Product Purchase Button” wichtige Informationen. Standardmäßig wird ja z.B. “inkl. 10% MwSt. zzgl. Versandkosten” eingeblendet. Stelle ich auf den erweiteren Layouteditor um und platziere den “”Product Purchase Button”, so zeigt er mir eben diese Informationen nicht an.
Gibt es einen eleganten Weg diese Informationen auch einzublenden? Ich verwende ein Child-Theme. WordPress, WooCommerce, das Maintheme und alle verwendeten Plugins sind brandaktuell.
LG Jens
August 25, 2017 at 12:50 pm #843920Hey Jens,
Können Sie uns einen temporären Admin-Zugang zu Ihrer Website in der privaten Content-Box unten, so dass wir einen genaueren Blick haben können?
Best regards,
VictoriaAugust 25, 2017 at 1:02 pm #843927Hallo,
klar. Ich habe ein Testprodukt angelegt, wo man das ganze sehen kann. Die Links dazu auch im Private-Content field..
LG
JensAugust 29, 2017 at 2:09 pm #845328Hallo,
will nicht drängeln, aber auch nicht das es in Vergessenheit gerät. ;)
Gibt es schon einen Lösungsansatz?
LG Jens
August 30, 2017 at 5:28 am #845573Hi,
Please try this filter in the functions.php file.
add_filter( 'woocommerce_get_price_html', 'woocommerce_get_price_html_mod', 10, 1 ); function woocommerce_get_price_html_mod($html) { if ( wc_gzd_get_gzd_product( $product )->get_tax_info() ) : $html .= '<p class="wc-gzd-additional-info tax-info">'.wc_gzd_get_gzd_product( $product )->get_tax_info().'</p>'; elseif ( get_option( 'woocommerce_gzd_small_enterprise' ) == 'yes' ) : $html .= '<p class="wc-gzd-additional-info small-business-info">'.wc_gzd_get_small_business_product_notice().'</p>'; endif; return $html; }
Best regards,
IsmaelSeptember 1, 2017 at 4:33 pm #846906Hi Ismael,
if i use this code the website doesn’t work any more.
Edit: I implemented the code at the bottom of my functions.php inside the child-theme and commented it out. You can reactivate it and take a look by your own. But please deactivate it immediately after this, if you can’t fix it. ;) (what i don’t really think) ;)
Cheers
Jens- This reply was modified 7 years, 2 months ago by medienvirus.
September 4, 2017 at 8:39 am #847570Hi,
We will need the FTP details in case we break the site. Please create a backup as well.
Best regards,
IsmaelSeptember 4, 2017 at 11:34 am #847674Hi,
in private details you find everything you need. mysql backup is done.
there are two usernames, if one of them doesn’t work.
cheers
jensSeptember 7, 2017 at 5:12 am #848945Hi,
Thank you for the info. I’ll ask one of our devs to check the issue. Please wait for his response.
Best regards,
IsmaelSeptember 11, 2017 at 3:28 pm #850543Hi,
Leider weigern sich die Entwickler von Germanized mit uns zusammenzuarbeiten und entwickeln in der pro Version ihre eigenen Anpassungen.
Damit Du die Steuerinformationen angezeigt bekommst:
Kopiere dann die Datei enfold\config-templatebuilder\avia-shortcodes\product_snippet_button.php in das Verzeichnis shortcodes im Child Theme.
Dann ersetze (ca. Zeile 72:
wc_clear_notices(); woocommerce_template_single_add_to_cart();
mit
wc_clear_notices(); woocommerce_gzd_template_single_legal_info(); woocommerce_template_single_add_to_cart();
Dann erscheint “incl. 19% VAT plus Shipping Costs” unterhalb des Preises.
Ich hoffe, das hilft einmal weiter.
Best regards,
GünterSeptember 12, 2017 at 11:48 am #850961Hallo Günter,
Danke für die Hilfe. Das hat funktioniert. Hast Du zufällig bei Deinen Tests die Cachingplugins deaktiviert?
LG in jedem Fall für die Hilfe.
JensSeptember 12, 2017 at 1:04 pm #850976 -
AuthorPosts
- The topic ‘WooCommerce Layouteditor – Product Purchase Button – fehlende Infos’ is closed to new replies.