更改Woocommerce中产品变体的购物车项目名称

时间:2017-12-13 20:02:38

标签: php wordpress woocommerce cart hook-woocommerce

我想在产品添加到购物车后更改购物车中显示的产品差异文字。我怀疑我想使用woocommerce_get_item_data过滤器。

但我不确定该函数中的代码是如何设置的。

对此有任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:1)

您需要以这种方式使用挂钩在woocommerce_cart_item_name过滤器挂钩中的自定义函数:

add_filter( 'woocommerce_cart_item_name', 'custom_variation_item_name', 10, 3 );
function custom_variation_item_name( $item_name,  $cart_item,  $cart_item_key ){
    // Change item name only if is a product variation
    if( $cart_item['data']->is_type('variation') ){
        // HERE customize item name
        $item_name = __('my custom item name');

        // For cart page we add back the product link
        if(is_cart())
            $item_name = sprintf( '<a href="%s">%s</a>', esc_url( $cart_item['data']->get_permalink() ), $item_name );
    }
    return $item_name;
}

代码放在活动子主题(或主题)的function.php文件中,或者放在任何插件文件中。

经过测试和工作