Опис
A very simple plugin that displays a ‘new’ badge on products that were published in the last x days. X is defined on the catalog tab of the WooCommerce settings screen.
Please feel free to contribute on github.
Скріншоти
Встановлення
- Upload
woocommerce-new-product-badge
to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Define how ‘new’ products must be (in days) to receive the ‘new’ badge on the catalog tab of the WooCommerce settings screen.
- Готово!
Часті питання
- Installation Instructions
-
- Upload
woocommerce-new-product-badge
to the/wp-content/plugins/
directory - Activate the plugin through the ‘Plugins’ menu in WordPress
- Define how ‘new’ products must be (in days) to receive the ‘new’ badge on the catalog tab of the WooCommerce settings screen.
- Готово!
- Upload
- I want to style the badge myself, how do I remove the default styles
-
There 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; }
Відгуки
Учасники та розробники
“WooCommerce New Product Badge” — проект з відкритим вихідним кодом. В розвиток плагіну внесли свій вклад наступні учасники:
Учасники“WooCommerce New Product Badge” було перекладено на 3 локалізації. Дякуємо перекладачам за їх роботу.
Перекладіть “WooCommerce New Product Badge” на вашу мову.
Цікавитесь розробкою?
Перегляньте код, перегляньте сховище SVN або підпишіться на журнал розробки за допомогою RSS.
Журнал змін
0.3.0 – 04/02/2013
- Added localization compatibility with WPML
0.2 – 23/05/2013
- Introduced filter to disable style
- Minor translation fix and added Dutch translation
- Added en_GB .po/.mo
- Stripped object pass by reference
0.1
Initial release.