在类别页面上显示产品变体

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在类别页面上显示产品变体相关的知识,希望对你有一定的参考价值。

如何在WooCommerce类别页面上显示所有产品变体?

我已经设置了一个包含三种变体的可变产品。我希望每个变体(不是变量产品本身)在产品类别页面上显示为单独的产品。用户应该能够打开变量产品并将其添加到购物车。

这可能吗?

答案

示例:http://bennyhendrikx.be/product-categorie/clothing/page/2/

在functions.php中添加此代码

   if ( ! function_exists( 'woocommerce_template_loop_add_to_cart' ) ) {

  function woocommerce_template_loop_add_to_cart() {
    global $product;

    if ($product->product_type == "variable" && (is_product() || is_product_category() || is_product_tag())) {
      woocommerce_variable_add_to_cart();
    }

    else {
      woocommerce_get_template( 'loop/add-to-cart.php' );
    }
  }

}
另一答案
add_action('woocommerce_after_shop_loop_item_title','woocommerce_template_single_variation', 5);
function woocommerce_template_single_variation() {
            global $product;
            if ($product->product_type == "variable" && (is_product_category() || is_product_tag())) {
              echo woocommerce_variable_add_to_cart();
            }

 }
另一答案

您好您可以将此代码粘贴到主题functions.php中

这是代码

/**
 * Replace add to cart button in the loop.
 */
function iconic_change_loop_add_to_cart() {
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );
    add_action( 'woocommerce_after_shop_loop_item', 'iconic_template_loop_add_to_cart', 10 );
}

add_action( 'init', 'iconic_change_loop_add_to_cart', 10 );

/**
 * Use single add to cart button for variable products.
 */
function iconic_template_loop_add_to_cart() {
    global $product;

    if ( ! $product->is_type( 'variable' ) ) {
        woocommerce_template_loop_add_to_cart();
        return;
    }

    remove_action( 'woocommerce_single_variation', 'woocommerce_single_variation_add_to_cart_button', 20 );
    add_action( 'woocommerce_single_variation', 'iconic_loop_variation_add_to_cart_button', 20 );

    woocommerce_template_single_add_to_cart();
}

/**
 * Customise variable add to cart button for loop.
 *
 * Remove qty selector and simplify.
 */
function iconic_loop_variation_add_to_cart_button() {
    global $product;

    ?>
    <div class="woocommerce-variation-add-to-cart variations_button">
        <button type="submit" class="single_add_to_cart_button button"><?php echo esc_html( $product->single_add_to_cart_text() ); ?></button>
        <input type="hidden" name="add-to-cart" value="<?php echo absint( $product->get_id() ); ?>" />
        <input type="hidden" name="product_id" value="<?php echo absint( $product->get_id() ); ?>" />
        <input type="hidden" name="variation_id" class="variation_id" value="0" />
    </div>
    <?php
}

以上是关于在类别页面上显示产品变体的主要内容,如果未能解决你的问题,请参考以下文章

在归档类别页面上显示特定的产品属性值

架构丰富的代码片段也应该用于产品列表吗?

使用 WooCommerce 选择变体时更新产品页面上的价格

类别页面上产品的 pre_get_posts - woocommerce

php 此代码段将排除您在WooCommerce Shop页面上显示的任何类别的所有产品。

php 此代码段将排除您在WooCommerce Shop页面上显示的任何类别的所有产品。