Hi guys! LOVE the Knowledge Base Pro plugin. About to launch a website and need to make the length of the excerpt for the category longer in the main encyclopaedia overview page. Can you please advise. Thanks!
1 Answers
In this case, you can open the plugins/dw-knowledgebase-pro/templates/front folder then open the Page theme that you have selected in the plugin setting and find the line 56 to change the number of the category_description.
Replace this code:
<?php echo substr( category_description($term_id), 0, 100 ); ?>
With new code:
<php echo substr( category_description($term_id), 0, 200 ); ?>
Please login or Register to submit your answer