Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save plugin-republic/67e39c4139cb6cd7c119f2bdece00826 to your computer and use it in GitHub Desktop.
<?php
/**
* Hook: woocommerce_sale_flash.
* Update the HTML for the Sale! flash.
*/
function plugin_republic_sale_flash( $html, $post, $product ) {
// Modify the $html here
return $html;
}
add_filter( 'woocommerce_sale_flash', 'plugin_republic_sale_flash', 10, 3 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment