Bruce Reyes-Chow
asked 10 years ago

Searched and searched, but couldn’t figure out where/how to customise the “Question & Answer” heading. I am sure it’s an easy fix.  Thanks.

2 Answers
DominicStaff
answered 10 years ago

Hello Bruce ! To remove the the default “Question & Answer” header from DW Q& A Plugin, you can open the content-start-wrapper.php file, then remove the title in the following code: 

<h1 class="entry-title"><?php _e( 'Question & Answer', 'dw-focus' ); ?></h1>

Or you can add the following code to the style.css file:  

/* In question list page*/
.list-dwqa-question .entry-title {
    display: none;
}
/* Single question page */
.single-dwqa-question .entry-title {
    display: none;
}
/* Submit question page */
.submit-dwqa-question .entry-title {
    display: none;
}

Hope this helps !

Bruce Reyes-Chow
answered 10 years ago

Yes, this was an easy fix. Thanks!

Powered by DW Question & Answer Pro