Add Text under Single Product Short Description in Woocommerce

后端 未结 2 921
甜味超标
甜味超标 2020-12-20 02:41

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

2条回答
  •  太阳男子
    2020-12-20 03:02

    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;
    }
    

提交回复
热议问题