Displaying product thumbnail and attribute in Woocommerce cart and checkout

后端 未结 2 1713
时光说笑
时光说笑 2021-01-16 10:03

I am isplaying product attributes in my Woocommerce checkout table, see my previous question: Show Woocommerce taxonomy in emails

I also want to show the product ima

2条回答
  •  南笙
    南笙 (楼主)
    2021-01-16 10:25

    We can use CSS to display image thumbnail in Woocommerce Cart :

    @media (max-width: 767px) {
        .woocommerce table.shop_table.cart div.product-thumbnail {
            display: block !important;
            width: 75px !important;
            height: auto !important;
        }
    }
    

    It works in my website

提交回复
热议问题