Add HTML to WooCommerce product description
-
I am trying to auto-add some shortcode at the end of every woo product description. (not after short description). The code with which I am trying is:
add_filter('the_content','ce_add_text_long_descr'); function ce_add_text_long_descr($description){ $text="[my-shortcode-goes-here]"; return $description.$text; }
That one is not working for me. can someone help me?
The page I need help with: [log in to see the link]
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add HTML to WooCommerce product description’ is closed to new replies.