add_filter( 'woocommerce_get_price_html', function( $price ) {
if ( is_admin() ) return $price;
$user = wp_get_current_user();
$hide_for_roles = array( 'wholesale', 'wholesale-silver', 'wholesale-gold' );
// If one of the user roles is in the list of roles to hide for.
if ( array_intersect( $user->roles, $hide_for_roles ) ) {
return ''; // Return empty string to hide.
}
return $price; // Return original price
} );
add_filter( 'woocommerce_cart_item_price', '__return_false' );
add_filter( 'woocommerce_cart_item_subtotal', '__return_false' );
Woocommerce 如何對不同的類別中的商品做價格控制
add_filter( 'woocommerce_get_price_html', function( $price, $product ) {
if ( is_admin() ) return $price;
// Hide for these category slugs / IDs
$hide_for_categories = array( 'clothes', 'electronics' );
// Don't show price when its in one of the categories
if ( has_term( $hide_for_categories, 'product_cat', $product->get_id() ) ) {
return '';
}
return $price; // Return original price
}, 10, 2 );
add_filter( 'woocommerce_cart_item_price', '__return_false' );
add_filter( 'woocommerce_cart_item_subtotal', '__return_false' );
這次的 LINE TECH 2022 非常的精彩,有著前衛的元宇宙FU,講者在虛擬背景中,簡報在後面的大銀幕上被投出來,感覺就像戴上VR眼鏡置身在展演廳的現場看簡報,不用出門也有參加現場發布會的感覺,配合 LINE MUSIC 的直播平台,技術和未來感十足,總體看起來只有發放128枚NFT的抽獎活動美中不足,因為系統的不完美,而造成了很多民怨,不過我覺得還是相當程度的引起話題。
DOSI
也因為如此,想要針對 LINE 這次推出的區塊鏈、NFT、加密貨幣來加以記錄和討論,首先由平台說起,DOSI,命名源自於韓文的「都市」,我乍看下還以為是 DOS + I ,這是 LINE 用來發佈 NFT 的平台,包含兩個主要的部分
近期留言