Title: Remove Dates
Last modified: August 30, 2016

---

# Remove Dates

 *  Resolved [redwolfgirl66](https://wordpress.org/support/users/redwolfgirl66/)
 * (@redwolfgirl66)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/remove-dates-1/)
 * Hello,
 * I would like to remove the date of the review. How can I do that?
 * Thanks!
 * Victoria
 * [https://wordpress.org/plugins/wp-customer-reviews/](https://wordpress.org/plugins/wp-customer-reviews/)

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [netarc](https://wordpress.org/support/users/netarc/)
 * (@netarc)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/remove-dates-1/#post-6241441)
 * 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.
 *  [Jemmey](https://wordpress.org/support/users/jemmey/)
 * (@jemmey)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/remove-dates-1/#post-6241464)
 * I too would like to remove the date from a review. Please advise what steps we
   can take to achieve this. Many thanks,Jem
 *  [katybailey](https://wordpress.org/support/users/katybailey/)
 * (@katybailey)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/remove-dates-1/#post-6241466)
 * I agree with all three! 🙂
 *  [banerni](https://wordpress.org/support/users/banerni/)
 * (@banerni)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/remove-dates-1/#post-6241467)
 * 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](https://wordpress.org/support/users/bompus/)
 * (@bompus)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/remove-dates-1/#post-6241470)
 * 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.

 * ![](https://s.w.org/plugins/geopattern-icon/wp-customer-reviews_47737d.svg)
 * [WP Customer Reviews](https://wordpress.org/plugins/wp-customer-reviews/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-customer-reviews/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-customer-reviews/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-customer-reviews/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-customer-reviews/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-customer-reviews/reviews/)

 * 5 replies
 * 6 participants
 * Last reply from: [Aaron Queen](https://wordpress.org/support/users/bompus/)
 * Last activity: [10 years, 8 months ago](https://wordpress.org/support/topic/remove-dates-1/#post-6241470)
 * Status: resolved