Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save imran-khan1/1d03b53fc24b85b8f53f1c0a3b8e7f46 to your computer and use it in GitHub Desktop.
Save imran-khan1/1d03b53fc24b85b8f53f1c0a3b8e7f46 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