Title: Admin reply by :
Last modified: December 4, 2017

---

# Admin reply by :

 *  Resolved [carlager](https://wordpress.org/support/users/carlager/)
 * (@carlager)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/admin-reply-by/)
 * First of all thank you for a great guest book.
 * How do delete the text “Admin Reply By : Carlager” to the right of the Avatar?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fadmin-reply-by%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  Plugin Author [Marcel Pol](https://wordpress.org/support/users/mpol/)
 * (@mpol)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/admin-reply-by/#post-9751570)
 * You could use CSS to hide it:
 *     ```
       div.gb-admin-reply-uid em {
           display: none;
       }
       ```
   
 * You can also use PHP code in functions.php of your theme (untested):
 *     ```
       function my_gwolle_gb_admin_reply_header( $admin_reply_header, $entry ) {
           return '';
       }
       add_filter( 'gwolle_gb_admin_reply_header', 'my_gwolle_gb_admin_reply_header(' );
       ```
   
    -  This reply was modified 8 years, 5 months ago by [Marcel Pol](https://wordpress.org/support/users/mpol/).
 *  Thread Starter [carlager](https://wordpress.org/support/users/carlager/)
 * (@carlager)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/admin-reply-by/#post-9760789)
 * Thanx a lot for your reply.
 * Then function seem to work.
 * Which PHP code do I need to show the date of the entry to the right of the avatar?
 * Carl
 *  Thread Starter [carlager](https://wordpress.org/support/users/carlager/)
 * (@carlager)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/admin-reply-by/#post-9769279)
 * Hi Marcel.
 * The PHP code in functions.php should be
 *     ```
       function my_gwolle_gb_admin_reply_header( $html, $entry ) {
       	// $html is a string
       	$html = '';
       	return $html;
       }
       add_filter( 'gwolle_gb_admin_reply_header', 'my_gwolle_gb_admin_reply_header', 10, 2 );
       ```
   
 * _[Moderator note: code fixed. Please wrap code in the backtick character or [use the code button](https://make.wordpress.org/support/handbook/forum-welcome/#post-code-safely).]_
    -  This reply was modified 8 years, 5 months ago by [bdbrown](https://wordpress.org/support/users/bdbrown/).
 *  Plugin Author [Marcel Pol](https://wordpress.org/support/users/mpol/)
 * (@mpol)
 * [8 years, 5 months ago](https://wordpress.org/support/topic/admin-reply-by/#post-9774798)
 * To change the order of the data, you will need to edit the template.
    You can
   copy the frontend/gwolle_gb-entry.php file to your theme directory and edit the
   order. Please be aware that on updates, new changes can be made to the template,
   and you will want to track those. You should consider if you want all that work
   for just this change.

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

The topic ‘Admin reply by :’ is closed to new replies.

 * ![](https://ps.w.org/gwolle-gb/assets/icon-256x256.png?rev=1114688)
 * [Gwolle Guestbook](https://wordpress.org/plugins/gwolle-gb/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gwolle-gb/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gwolle-gb/)
 * [Active Topics](https://wordpress.org/support/plugin/gwolle-gb/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gwolle-gb/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gwolle-gb/reviews/)

 * 4 replies
 * 2 participants
 * Last reply from: [Marcel Pol](https://wordpress.org/support/users/mpol/)
 * Last activity: [8 years, 5 months ago](https://wordpress.org/support/topic/admin-reply-by/#post-9774798)
 * Status: resolved