-
AuthorPosts
-
May 27, 2017 at 1:48 pm #800534
Hey guys,
Please take a look at https://edley.de/produkt/programmiersprache-java-fuer-anfaenger/ or any other product on that website.
I would like to make two little changes to the text right below the price (“Kein Mehrwertsteuerausweis, da Kleinunternehmer nach §19 (1) UStG.”)
I want to:
1. change the the font size of that text from 14pt to 12pt (or just at least make it smaller)
2. change the text to “Kein Mehrwertsteuerausweis gemäß §19 (1) UStG.”I know that should not be that difficult but I just can’t figure it out. Is there a Quick CSS Code for this?
Many thanks!!
May 27, 2017 at 6:57 pm #800605Hey giaco_he,
Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look.
Best regards,
VictoriaMay 27, 2017 at 7:22 pm #800618Hi, yes of course.
May 28, 2017 at 6:00 am #800723Hi,
Follow the answers for your questions:
1. To resize the text, just add this custom CSS code:
.product p.wc-gzd-additional-info { font-size: 12pt !important; }
2. To change the text, add the following custom code at the functions.php
add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs ) { $tabs['additional_information']['title'] = __( 'Kein Mehrwertsteuerausweis gemäß §19 (1) UStG.' ); // Rename the additional information tab return $tabs; }
Best regards,
John TorvikMay 28, 2017 at 10:36 am #800751Hi,
1. worked :)
2. at which position in the functions.php?
Thank you!
May 28, 2017 at 11:48 am #800768Hi giaco_he,
I suggest you do put the code is the child theme functions.php.
If you need further assistance please let us know.
Best regards,
VictoriaMay 28, 2017 at 12:46 pm #800785Yes, but where should I put the code? Just at the bottom in the functions.php?
Because that did not work…Thanks
May 29, 2017 at 10:04 am #800979Hi,
Yes at the button of functions.php file should work.
If that is not working, you can try rename using a plugin like Loco Translate, it will be easier for you.Thank you
Best regards,
BasilisMay 29, 2017 at 10:08 am #800980That did not work, but I found a work around by just copying the text in the product short description and adjusting size and color accordingly. In case anyone has the same issue.
Best regards,
Giaco
May 29, 2017 at 11:00 pm #801291 -
AuthorPosts
- The topic ‘Change vat credit note on product page’ is closed to new replies.