Viewing 5 replies - 1 through 5 (of 5 total)
  • I’ll second this request, is removing the date from reviews an option? If not, I suggest it be added as an enhancement for future versions. thank you.

    I too would like to remove the date from a review. Please advise what steps we can take to achieve this. Many thanks,Jem

    I agree with all three! ??

    To remove the date go to

    wp-customer-reviews-admin.php

    on line 850 you can modify the date.
    Change to:

    switch ($col) {
    case 'date_time':
    $d = date("",strtotime($val));
    if (!$d || $d == '') {
    header('HTTP/1.1 403 Forbidden');
    echo json_encode(array("errors" => 'Bad Date Format'));
    exit();
    }
    
    $show_val = $d;
    $d2 = date("",strtotime($val));
    $update_col = mysql_real_escape_string($col);
    $update_val = mysql_real_escape_string($d2);
    break;
    Plugin Author Aaron Queen

    (@bompus)

    This will be an enhancement in a later release. Version 3.0.0 has been released and you can easily hide the date using your theme CSS file, something like this would work for 3.0.0 – place in your theme file so it doesn’t get wiped out when the plugin updates.

    div.wpcr3_review div.wpcr3_review_datePublished { display: none !important; }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Remove Dates’ is closed to new replies.