Anonymous User 16453565
(@anonymized-16453565)
Put below css in style.css
.woocommerce-review__published-date{
display:none;
}
Hi @2etpesam ,
As we have inherited the WordPress default feature of comment box. You can simply disable the Date and time by using the wordpress default filters. Here is the article that will help you in attaining your changes.
Thread Starter
Alip
(@2etpesam)
I’ve tried it, but it will only cause hidden text. That is why I am asking here.
Hello @2etpesam
We have added a filter to remove comment time markup in a development branch – https://github.com/brainstormforce/astra/tree/disable-comment-time
Please install this branch zip file and add below code snippet in theme’s functions.php file.
Code Snippet –
add_filter( ‘astra_single_post_comment_time_enabled’, ‘my_function’, 10, 1 );
function my_function( $bool ) {
return false;
}
Hope it helps you.
~ Uttam
(@2etpesam)
7 years, 4 months ago
Hi,
It’s a great theme.
I’d like to ask, how to remove date or time on comments?