-
-
Save lukecav/f823dd58303c84cf8ae302da3f38c06d to your computer and use it in GitHub Desktop.
Remove the price string from variable subscription products in WooCommerce
This file contains 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 wc_remove_var_subscriptions_price() { | |
return ''; | |
} | |
add_filter( 'woocommerce_variable_subscription_price_html', 'wc_remove_var_subscriptions_price' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment