2
<?php

    switch ( $product->product_type ) {
        case "variable" :
            $link   = apply_filters( 'variable_add_to_cart_url', get_permalink( $product->id ) );
            $label  = apply_filters( 'variable_add_to_cart_text', __('Select options', 'woocommerce') );
        break;
        case "grouped" :
            $link   = apply_filters( 'grouped_add_to_cart_url', get_permalink( $product->id ) );
            $label  = apply_filters( 'grouped_add_to_cart_text', __('View options', 'woocommerce') );
        break;
        case "external" :
            $link   = apply_filters( 'external_add_to_cart_url', get_permalink( $product->id ) );
            $label  = apply_filters( 'external_add_to_cart_text', __('Read More', 'woocommerce') );
        break;
        default :
            $link   = apply_filters( 'add_to_cart_url', esc_url( $product->add_to_cart_url() ) );
            $label  = apply_filters( 'add_to_cart_text', __('Add to cart', 'woocommerce') );
        break;
    }

    printf('<a href="%s" rel="nofollow" data-product_id="%s" class="add_to_cart_button button product_type_%s">%s</a>', $link, $product->id, $product->product_type, $label);

?>

我正在尝试在循环内显示变体,以便客户可以从商店页面将可变产品添加到他们的购物车(请参见下面的屏幕截图)......

http://cl.ly/image/42401k0X0X2I

我知道我需要包含功能-

get_available_variations();

而且我很确定这已经返回了一个数组,它只是将该数组放入一个选择下拉列表中+列出变体(S,M,L,XL)并具有将该变体添加到篮子的链接。

干杯!

4

3 回答 3

3

我在尝试解决相同问题时发现了您的帖子。我终于找到了...

function woocommerce_variable_add_to_cart() {
    global $product;

    // Enqueue variation scripts
    wp_enqueue_script( 'wc-add-to-cart-variation' );

    // Load the template
    woocommerce_get_template( 'single-product/add-to-cart/variable.php', array(
            'available_variations'  => $product->get_available_variations(),
            'attributes'            => $product->get_variation_attributes(),
            'selected_attributes'   => $product->get_variation_default_attributes()
        ) );
}
}

woocommerce-template.php

这在 loop/add-to-cart.php 中对我有用

switch ( $product->product_type ) {
        case "variable" :
            $link   = apply_filters( 'variable_add_to_cart_url', get_permalink( $product->id ) );
            $label  = woocommerce_variable_add_to_cart();
        break;

让我知道这是否有帮助:)

于 2013-01-22T16:56:55.803 回答
3

单个帖子页面的变体下拉模板文件位于此处:woocommerce\templates\single-product\add-to-cart\variable.php

这需要以下脚本来传递产品变量信息:

<script type="text/javascript">
var product_variations_<?php echo $post->ID; ?> = <?php echo json_encode( $available_variations ) ?>;
</script>

以及以下隐藏字段:

<input type="hidden" name="variation_id" value="" /> - where the value is the variation ID

我希望这是其他人可以帮助建立的一个开始。

于 2012-11-30T18:20:04.687 回答
2

我在Remi Corson 的博客上发现了一个简单的方法来做到这一点。
使用以下内容更改href购物车按钮的值:

http://example.com/cart/?add-to-cart=[PRODUCT_ID]&variation_id=[VARIATION_ID]&attribute_pa_[ATTRIBUTE_SLUG]=[ATTRIBUTE_SLUG_VALUE]

例子:

http://example.com/cart/?add-to-cart=123&variation_id=456&attribute_pa_colour=black

使用该get_available_variations();函数很容易得到变化值。对于产品 ID,您可以使用get_the_ID();函数。

于 2014-12-17T20:43:42.150 回答