Hey, can u give me hook to change “zzgl. Versandkosten” to “Versandkostenfrei” on single product? Maybe u can also give me a solution to get this text in color green.
Best regards
Alex
Is there any Hook for it?
Hey Alex,
Seems like the structure is a bit different from my end, are you using other plugins besides woocommerce for products, could be some woocommerce addons? The hook used should be woocommerce_single_product_summary. For making it to color green, try adding this css code in Quick CSS (located in Enfold > General Styling):
span.wc-gzd-additional-info.shipping-costs-info, span.wc-gzd-additional-info.shipping-costs-info a {
color: green !important;
}
Hope this helps :)
Best regards,
Nikko
Hey Nikko, thanks for your reply.
Im using germanized beside woocommerce. Is there any chance to change the text on single product via a hook?
I added a screenshot where i need it :)
Hi,
The css code I gave above should work. If it’s not working, can you give us temporary admin access? so we can check why it’s not working. As for the hook, I think the germanized woocommerce is using this one:
add_action( 'woocommerce_single_product_summary', 'woocommerce_gzd_template_single_legal_info', wc_gzd_get_hook_priority( 'single_legal_info' ) );
Cheers!
Nikko