在购物车缩略图中显示主要产品图像,而不是 WooCommerce 中的变体图像

Mel*_*nks 1 php wordpress woocommerce

我有一家 WooCommerce 商店,其中有多种产品。

在购物车中,它显示产品变体图像的缩略图。这不好,因为变体实际上只是一个文本图像,因此您无法看到文本所涉及的实际产品。

如何强制 Woo Commerce 仅显示主要产品图像,而不显示购物车页面上的变体?

谢谢!!

aag*_*kaj 5

在活动主题的functions.php.

function getCartItemThumbnail( $img, $cart_item ) {

    if ( isset( $cart_item['product_id'] ) ) {
        $product = wc_get_product($cart_item['product_id']);

        if ( $product && $product->is_type( 'variable' ) ) {
            // Return variable product thumbnail instead variation.
            return $product->get_image();
        }
    }

    return $img;
}

add_filter( 'woocommerce_cart_item_thumbnail', 'getCartItemThumbnail', 111, 2 );
Run Code Online (Sandbox Code Playgroud)