2 回答

TA貢獻(xiàn)1847條經(jīng)驗(yàn) 獲得超11個(gè)贊
您沒有以正確的方式使用此過濾器掛鉤。請嘗試以下操作:
add_filter( 'woocommerce_sale_flash', 'filter_sales_flash_callback', 100, 3 );
function filter_sales_flash_callback( $output_html, $post, $product )
{
if ( ! is_user_logged_in() ) {
$output_html = false;
}
return $output_html;
}
代碼位于活動(dòng)子主題(或活動(dòng)主題)的 functions.php 文件中。測試和工作。

TA貢獻(xiàn)2080條經(jīng)驗(yàn) 獲得超4個(gè)贊
function sales_markup() {
if(!is_admin()) {
if(is_user_logged_in()) {
// Instead of outputting add the markup that you want to show
$output = '<div class="Sales_markup_here">
</div>';
return $output;
}
}
}
// use shortcode instead of action and then use shortcode anywhere you want to ouptut it
add_shortcode( 'sales_markup', 'sales_markup' );
在要輸出氣泡的位置使用短代碼。您可以在全局 css 文件中添加 css。
- 2 回答
- 0 關(guān)注
- 177 瀏覽
添加回答
舉報(bào)