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 badges1 Answer
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;