2017-07-18 16 views
0

カテゴリ内の各商品に個別に追加するのではなく、カテゴリ全体で関連商品やアップセルを追加したいと考えています。これは可能ですか?もしそうなら、どうやってこれをやりますか?Woocommerce - カテゴリ全体の関連製品

トム

答えて

0

第一ありがとうございアップセルに使用されるカテゴリにカスタムフィールドを追加します。私はそのようなもののための高度なカスタムフィールドのプラグインの関係フィールドを使用します。一度これが終わると、themesのfunctions.phpファイルにフィルタを追加してください。

add_filter('woocommerce_product_upsell_ids', 'category_upsells', 10, 2); 
function category_upsells($upsell_ids, $product) { 
    // get the category of the product and from the category get the product ids from your custom theme 
    // set $upsell_ids to your product ids 
    return $upsell_ids; 
} 
関連する問題