Hide description in individual question page

2.28K viewsCorequestions single question
0

Hi,
I’ve made the description filed in question optional and have hidden it from Ask Question form. But when I open the question the description is blank. I want to hide the description field in the individual questions page. How do I do that?

Answered question
0
<?php if (!empty($question->description) && /* your condition here */): ?>
    <div class="question-description">
        <?php echo wpautop($question->description); ?>
    </div>
<?php endif; ?>


Try this slope

Answered question
You are viewing 1 out of 1 answers, click here to view all answers.