Hide description in individual question page
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?
harrystyles94z Answered question
<?php if (!empty($question->description) && /* your condition here */): ?> <div class="question-description"> <?php echo wpautop($question->description); ?> </div> <?php endif; ?>
Try this slope
harrystyles94z Answered question