Title: Hide Name
Last modified: October 8, 2018

---

# Hide Name

 *  Resolved [wordpressmz](https://wordpress.org/support/users/wordpressmz/)
 * (@wordpressmz)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/hide-name/)
 * Hi, I wanted to know if there is a option to hide the full or half name of the
   person who has added the review
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fhide-name%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [jgwhite33](https://wordpress.org/support/users/jgwhite33/)
 * (@jgwhite33)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/hide-name/#post-10775596)
 * You can hide the entire name with this custom CSS added to the review template…
 * .wprev_preview_tcolor2_T1 {
    display: none; }
 * You would need to modify the plugin code to hide half the name. If you want to
   do that I can send you instructions.
 * The Pro version allows you to pick how you want to display the name.
 * thanks
 *  Thread Starter [wordpressmz](https://wordpress.org/support/users/wordpressmz/)
 * (@wordpressmz)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/hide-name/#post-10776045)
 * please send the instruction
 *  Plugin Author [jgwhite33](https://wordpress.org/support/users/jgwhite33/)
 * (@jgwhite33)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/hide-name/#post-10781749)
 * In the file public\partials\template_style_1.php add the following code before
   line 79.
 *     ```
       $tempreviewername = stripslashes(strip_tags($review->reviewer_name));
       $words = explode(" ", $tempreviewername);
       $tempfirst = $words[0];
       ```
   
 * Then around 90 replace this…
 * `echo stripslashes($review->reviewer_name);`
 * With this….
 * `echo $tempfirst;`
 * Keep in mind that this will need to be done again if you update the plugin.

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

The topic ‘Hide Name’ is closed to new replies.

 * ![](https://ps.w.org/wp-facebook-reviews/assets/icon-128x128.png?rev=2722797)
 * [WP Review Slider](https://wordpress.org/plugins/wp-facebook-reviews/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wp-facebook-reviews/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wp-facebook-reviews/)
 * [Active Topics](https://wordpress.org/support/plugin/wp-facebook-reviews/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wp-facebook-reviews/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wp-facebook-reviews/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [jgwhite33](https://wordpress.org/support/users/jgwhite33/)
 * Last activity: [7 years, 7 months ago](https://wordpress.org/support/topic/hide-name/#post-10781749)
 * Status: resolved