0

我正在研究wordpress,插件是:woocommerce,datafeedr api和datefeedr产品集,我也在woocommerce中添加了一些来自datafeedr的产品,现在我想暂时停用相关产品,我不去删除它们。

4

1 回答 1

0
remove_action(
  'woocommerce_after_single_product_summary',
  'woocommerce_output_related_products',
  20
);

如果这不起作用,请将其删除并在functions.php中使用它:

add_filter(
  'woocommerce_related_products_args',
  '_remove_related_products',
  10
);

function _remove_related_products( $args ) {
  return array();
}

我希望这个工作,如果没有,你将 10 更改为 20、30 或......直到它工作,我希望。

于 2014-03-30T06:55:30.403 回答