Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KoolPal/c8562628ba4d81823c3ffdf248b4934e to your computer and use it in GitHub Desktop.
Save KoolPal/c8562628ba4d81823c3ffdf248b4934e to your computer and use it in GitHub Desktop.
<?php
//flatsome product detail page text after excerpt
function display_after_short_description($excerpt) {
$add_to_excerpt = $excerpt . "<p style='color:green'>Add anything after excerpt</p>";
return $add_to_excerpt;
}
add_filter('woocommerce_short_description', 'display_after_short_description');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment