Remove question meta from questions list

4.02K viewsGeneral
0

hello, I need to hide (“some user” commented on answer 23 mins ago) from the questions list.

I’ve located the line responsible for calling the PHP function that returns this HTML “<?php echo ap_display_question_metas() ?>”

how ever I couldn’t locate the function itself to comment out what I need to hide. Is there any way you can help!!

0

Simply comment out that function. You can use theme override and remove this function from question.phpcontent-list.php and answer.php

if I commented out this function, it removes post views and tags, which is needed in my case, I only want to hide the user action.

Actually you need to remove this function ap_question_the_active_time()

Working like charm!! Thanks a lot.