How to customize answering questions page?

Solved2.24K viewsWordPresscustomization
0

How can I customize the page where we found when we want to answer a question?
We can set a custom page in: Archives page, Ask page, User page…but there isn’t the option to set a custom page or template of each question already asked.
You can see the screenshot with no header neither paddings.
Example page
Thanks!

Question is closed for new answers.
Selected answer as best
1

Hello,
Single question page uses base page template. You can add condition to base page template. Like this:

<?php if ( is_question() ) : ?>
    <-- Single question HTML -->
<?php else : ?>
    <-- Base page HTML -->
<?php endif; ?>

Selected answer as best
You are viewing 1 out of 1 answers, click here to view all answers.