开发者 |
jameskoster
CoenJacobs |
---|---|
更新时间 | 2014年9月5日 01:03 |
PHP版本: | 3.5 及以上 |
WordPress版本: | 4.0 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
woocommerce-new-product-badge
to the /wp-content/plugins/
directoryThere are only a couple of styles applied to the badge. Although not best practise it's probably safe to just overwrite these with your own css. However, if you want to do it properly you can either dequeue the css:
add_action( 'wp_enqueue_scripts', 'remove_new_badge_styles', 30 ); function remove_new_badge_styles() { wp_dequeue_style( 'nb-styles' ); }
Or use the filter:
add_filter( 'woocommerce_new_badge_enqueue_styles', 'remove_new_badge_styles' ); function remove_new_badge_styles() { return false; }