Skip to content

Instantly share code, notes, and snippets.

@plugin-republic
Last active October 1, 2025 12:44
Show Gist options
  • Select an option

  • Save plugin-republic/df5af0b49d87db7df69c52a12f3464f4 to your computer and use it in GitHub Desktop.

Select an option

Save plugin-republic/df5af0b49d87db7df69c52a12f3464f4 to your computer and use it in GitHub Desktop.
<?php
/**
* Hook: woocommerce_short_description.
* Modify the HTML for the short description.
*/
function plugin_republic_short_description( $short_description ) {
// Modify the $short_description HTML here
return $short_description;
}
add_filter( 'woocommerce_short_description', 'plugin_republic_short_description', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment