Linux 软件免费装
Banner图

WooCommerce New Product Badge

开发者 jameskoster
CoenJacobs
更新时间 2014年9月5日 01:03
PHP版本: 3.5 及以上
WordPress版本: 4.0
版权: GPLv2 or later
版权网址: 版权信息

标签

woocommerce ecommerce new new product

下载

0.1 0.2 0.3.0

详情介绍:

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.

安装:

  1. Upload woocommerce-new-product-badge to the /wp-content/plugins/ directory
  2. 通过WordPress的“插件”菜单激活插件
  3. Define how 'new' products must be (in days) to receive the 'new' badge on the catalog tab of the WooCommerce settings screen.
  4. Done!

屏幕截图:

  • The new badge.

常见问题:

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; }

更新日志:

0.3.0 - 04/02/2013 0.2 - 23/05/2013 0.1 Initial release.