Hi, how to enable brand description?
This topic has 9 replies, 4 voices, and was last updated 9 years, 6 months ago ago by Eva Kemp
Hi, how to enable brand description?
Hello,
To display description you need add this code in the file wp-content/themes/legenda/woocommerce/archive-product.php (after line 38)
<? if(isset($cat->description) && $cat->description !='' && !is_shop()) {
?>
<div class="product-category-description">
<?php echo do_shortcode($cat->description); ?>
</div>
<?php
}
?>
Regards,
Eva Kemp.
hi, is still not showing? I have did the changes at the editor page.
Hello,
Please provide us with FTP and WP Dashboard credentials in private content.
Best regards,
Jack Richardson.
Hi Jack,
provided as requested. Thanks.
Hello,
Your FTP credentials aren’t correct. Please check them.
Regards,
Robert Hall
Also please try to replace the code above for this one
<?php $description = term_description(); ?>
<?php if ($description) : ?>
<div class="product-category-description">
<?php echo $description; ?>
</div>
<?php endif; ?>
Regards,
Robert Hall
Yes thank u, is showing.
Hello,
You’re welcome.
Regards,
Eva Kemp.
The issue related to '‘Brand description’' has been successfully resolved, and the topic is now closed for further responses