Hi Guys,
I have this set up in the child theme but I cannot limit the Brand Description on the Single Product page to 40 charachters, this is what I need to alter:
<?php echo $brand->description;?>
It needs to be changed to something like this:
<?php echo wp_trim_words( $brand->description(), 40, '...' ); ?>
But what’s the correct php for this, any help would be greatly appriciated.
David