最后活跃于 1713290588

sale-flash-label.php 原始文件
1/* START Show sale flash label */
2add_filter('woocommerce_sale_flash', 'ds_change_sale_text');
3function ds_change_sale_text() {
4return '<span class="onsale">Oferta!</span>';
5}
6
7/* END Show sale flash label */
8