在woocommerce产品类型中隐藏选项选择项目

时间:2013-12-23 15:47:47

标签: wordpress drop-down-menu woocommerce

我打算向某人提供一个woocommerce商店,我想隐藏所有必要的选项,以免混淆非高级用户。特别是产品类型。

在WooCommerce产品编辑器中,可以选择产品类型。我只想展示简单易变的产品。

通常可以使用css display:hide属性来完成,但是当我检查woocommerce产品选项时,选项没有id或类选择器。

以下是我在产品选项上看到的代码

<select id="product-type" name="product-type">
<optgroup label="Product Type"><option value="simple" selected="selected">Simple product</option>
<option value="grouped">Grouped product</option><option value="external">External/Affiliate product</option>
<option value="variable">Variable product</option></optgroup>
</select>

我的问题。有没有办法在一个选项框中隐藏分组产品和联盟产品类型,以便在woocommerce或wp更新期间不受影响?

由于

3 个答案:

答案 0 :(得分:17)

您可以过滤product_type_selector

add_filter( 'product_type_selector', 'remove_product_types' );

function remove_product_types( $types ){
    unset( $types['grouped'] );
    unset( $types['external'] );

    return $types;
}

答案 1 :(得分:3)

您可以使用命名选择器:

#product-type option[value="grouped"] {
    ... your css here ...
}

请参阅此帖子:CSS to select another Element based on a HTML Select Option Value

答案 2 :(得分:2)

尝试一下。该代码应该可以正常工作,并且在woocommerce 3.4.4及更高版本中最有效。 参考: https://gist.github.com/tanmay27vats/89f9d67db78c33a6ffa1d844235a5db1

add_filter( 'product_type_selector', 'remove_product_types' );

function remove_product_types( $types ){
    unset( $types['grouped'] );
    unset( $types['external'] );
    unset( $types['variable'] );

    return $types;
}