我可以通过钩子得到一些产品在WooCommerce中是虚拟的吗?

时间:2018-01-05 作者:Yan Jun

我在面板(post.php页面)中自定义了如下选项卡:

enter image description here

但如果它不是虚拟产品,我想把它隐藏起来。如果是虚拟产品,请展示它。

我不知道如何才能获得产品的价值,这是虚拟的还是非虚拟的。

1 个回复
最合适的回答,由SO网友:jas 整理而成

在要处理图标或选项卡的产品页面模板上调用此模板:

<?php
    if ( ! defined( \'ABSPATH\' ) ) exit; // Exit if accessed directly
    global $post, $woocommerce, $product;

    if ($product-> is_virtual(\'yes\')) {
        // your logic to display tab or image etc 
    }else{
        // your logic not to display tab or image etc 
    }
    ?>

follow this link for details

有关更多相关详细信息see this linkthis one

希望这将给你的想法和帮助!

根据注释获取ID为的产品类型:For details

$product = get_product(619);
echo $product->product_type; 

结束

相关推荐