I want to add some Global Text immediately under the Product Short Description in Woo Commerce, before the product options.
I can change the file directly, but of co
This is the solution that worked for me:
add_filter('woocommerce_short_description','ts_add_text_short_descr'); function ts_add_text_short_descr($description){ $text="Your text here"; return $description.$text; }