Title: Custom plugin
Last modified: August 31, 2016

---

# Custom plugin

 *  Resolved [jkylemarshall](https://wordpress.org/support/users/jkylemarshall/)
 * (@jkylemarshall)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/custom-plugin-4/)
 * I want the view profile link to link users back to there profile on my site, 
   not the plugin profile but I cant figure out how to do that. So instead I was
   wondering if you could modify the plugin and just take away the option to view
   profile or edit profile because my users dont need that option.
 * [https://wordpress.org/plugins/wpchats-lite-private-messaging/](https://wordpress.org/plugins/wpchats-lite-private-messaging/)

Viewing 1 replies (of 1 total)

 *  anonymized-13749270
 * (@anonymized-13749270)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/custom-plugin-4/#post-7256601)
 * Hello,
 * I just figured out you posted about this here [http://support.samelh.com/forums/topic/redirect-profile/](http://support.samelh.com/forums/topic/redirect-profile/).
   Thanks, we will continue from there.
 * To disable the edit profile page, you can redirect it to some custom page where
   users can edit their usual profiles or browse users etc.. use this code:
 *     ```
       add_action('_wpc_before_profile_edit_page', function() {
   
       	// You can use wp_get_current_user()->user_nicename to get the current user slug
       	// and use it instead of 'my-profile'..
   
       	wp_redirect('http://example.com/users/my-profile/edit/');
       	exit;
   
       });
       ```
   
 * Let me know how it goes.
 * Thanks,
    Samuel

Viewing 1 replies (of 1 total)

The topic ‘Custom plugin’ is closed to new replies.

 * ![](https://s.w.org/plugins/geopattern-icon/wpchats-lite-private-messaging_e9f4fe.
   svg)
 * [WpChats Lite](https://wordpress.org/plugins/wpchats-lite-private-messaging/)
 * [Support Threads](https://wordpress.org/support/plugin/wpchats-lite-private-messaging/)
 * [Active Topics](https://wordpress.org/support/plugin/wpchats-lite-private-messaging/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpchats-lite-private-messaging/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpchats-lite-private-messaging/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: anonymized-13749270
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/custom-plugin-4/#post-7256601)
 * Status: resolved