I need to hide the qustion update status. What should I do to solve this problem?

2.81K viewsCore
0


I need to hide the status history under the question. Please help me.

Answered question
0

I don’t know the correct way, but it is possible to change the plugin file /wp-content/plugins/anspress-question-answer/includes/class-theme.php
replace the line 340

echo ‘<div class=”ap-post-updated”><i class=”apicon-clock”></i>’ . wp_kses_post( $activity ) . ‘</div>’;

on

//echo ‘<div class=”ap-post-updated”><i class=”apicon-clock”></i>’ . wp_kses_post( $activity ) . ‘</div>’;

Answered question