Hi there,
I have installed the latest version of Newspaper theme, and the way DW Question & Answer answers are shown is broken. List of questions, and question itself look good, but when going into a question with an answer it looks bad. Can you help me please?
Link: https://spainguru.es/questions/
1 Answers
At the moment, the plugin conflicting with the Tagdiv plugin, you can use the following code in the functions.php file:
// Fix DW Q&A conflict with Tagdiv plugin
add_action('template_redirect', 'remove_td_comment_filter', 10);
function remove_td_comment_filter(){
if ( is_singular('dwqa-question')){
remove_filter( 'comments_template', 'tdc_template_include', 99 );
}
}
Please login or Register to submit your answer