Created
June 23, 2021 03:51
-
-
Save jmabbas/9cbc8c690eea20e014ea0447843b3b9d to your computer and use it in GitHub Desktop.
Electro - Sale label only for logged in users
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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