Skip to content

Instantly share code, notes, and snippets.

@jmabbas
Created June 23, 2021 03:51
Show Gist options
  • Save jmabbas/9cbc8c690eea20e014ea0447843b3b9d to your computer and use it in GitHub Desktop.
Save jmabbas/9cbc8c690eea20e014ea0447843b3b9d to your computer and use it in GitHub Desktop.
Electro - Sale label only for logged in users
function electro_get_sale_flash( $html, $post, $product ) {
if( is_user_logged_in() ) {
$html = '<span class="onsale">-' . electro_get_savings_on_sale( $product, 'percentage' ) . '</span>';
return apply_filters( 'electro_get_sale_flash', $html, $post, $product );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment