最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

woocommerce offtopic - Display description on cart page

programmeradmin0浏览0评论

How to display main product description on the cart page? I tried this but it works only for variation description.

$_product->description

I want to display the main description which is the same for all variations.

How to display main product description on the cart page? I tried this but it works only for variation description.

$_product->description

I want to display the main description which is the same for all variations.

Share Improve this question edited May 6, 2019 at 10:37 norman.lol 3,2413 gold badges30 silver badges35 bronze badges asked May 6, 2019 at 10:12 Marcin UrbańczykMarcin Urbańczyk 134 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

$_product object is product variation object.

You have to first get the parent product id and then get the description of parent product.

$parent_product_id =$_product->get_parent_id();
$parent_product = get_post($parent_product_id);
echo $content = $parent_product->post_content;

Or

 echo $_product->parent->description;
发布评论

评论列表(0)

  1. 暂无评论