Title: Changing Link Names
Last modified: August 21, 2016

---

# Changing Link Names

 *  Resolved [nootropic777](https://wordpress.org/support/users/nootropic777/)
 * (@nootropic777)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/changing-link-names/)
 * Hi, kinda new here and thought this would be a perfect plugin for a software 
   portal. The user permissioning is great. However, I cannot figure out how to 
   change the “Pages” & “Files” links to “Software” & “Documentation”. How might
   I be able to do this?
 * Thanks!
 * [http://wordpress.org/plugins/customer-area/](http://wordpress.org/plugins/customer-area/)

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

 *  Plugin Contributor [Vincent Mimoun-Prat](https://wordpress.org/support/users/vprat/)
 * (@vprat)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/changing-link-names/#post-4470736)
 * Hi,
 * This can be done using this code in your theme’s functions.php file:
 *     ```
       function my_files_action( $action ) {
         $new_action = $action;
         $new_action['label'] = "Software";
         $new_action['hint'] = "Available Software";
         return $new_action;
       }
       add_filter('cuar_show_private_files_action', 'my_files_action');
       ```
   
 * Similarly, for pages:
 *     ```
       function my_pages_action( $action ) {
         $new_action = $action;
         $new_action['label'] = "Documentation";
         $new_action['hint'] = "Available Documentation";
         return $new_action;
       }
       add_filter('cuar_show_private_pages_action', 'my_pages_action');
       ```
   
 *  Thread Starter [nootropic777](https://wordpress.org/support/users/nootropic777/)
 * (@nootropic777)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/changing-link-names/#post-4470838)
 * that worked! Thanks.

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

The topic ‘Changing Link Names’ is closed to new replies.

 * ![](https://ps.w.org/customer-area/assets/icon-256x256.png?rev=1288039)
 * [WP Customer Area](https://wordpress.org/plugins/customer-area/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/customer-area/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/customer-area/)
 * [Active Topics](https://wordpress.org/support/plugin/customer-area/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/customer-area/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/customer-area/reviews/)

 * 2 replies
 * 2 participants
 * Last reply from: [nootropic777](https://wordpress.org/support/users/nootropic777/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/changing-link-names/#post-4470838)
 * Status: resolved