我發現了這個很棒的解決方案,可以根據產品屬性顯示相關產品,但此外,我們還希望對追加銷售執行相同的操作。
到目前為止我所嘗試的方法還不起作用,因為我相信我們必須添加一些附加信息,因為 related_products 功能與追加銷售不同。
add_filter( 'woocommerce_upsell_products', 'upsell_products_by_attribute', 10, 3 ); function upsell_products_by_attribute( $upsells, $product_id, $args ) { $taxonomy = 'pa_attribute'; $term_slugs = wp_get_post_terms( $product_id, $taxonomy, ['fields' => 'slugs'] ); if ( empty($term_slugs) ) return $upsells; $posts_ids = get_posts( array( 'post_type' => 'product', 'ignore_sticky_posts' => 1, 'posts_per_page' => 6, 'post__not_in' => array( $product_id ), 'tax_query' => array( array( 'taxonomy' => $taxonomy, 'field' => 'slug', 'terms' => $term_slugs, ) ), 'fields' => 'ids', 'orderby' => 'rand', ) ); return count($posts_ids) > 0 ? $posts_ids : $upsells; }
所以我想知道是否有可能對追加銷售部分做同樣的事情。
您可以刪除預設操作掛鉤
woocommerce_after_single_product_summary
並重新新增它,您可以自訂upsells
產品。檢查下面的程式碼。程式碼將進入您的活動主題functions.php檔案。將
$taxonomy = 'pa_color';
變更為您的自訂分類法。