Title: Remove Generate Link Menu
Last modified: December 21, 2022

---

# Remove Generate Link Menu

 *  [joaopaulor](https://wordpress.org/support/users/joaopaulor/)
 * (@joaopaulor)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/remove-generate-link-menu/)
 * Hello, I need to remove the link generation menu for the affiliates and payments.
   How do I do that?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fremove-generate-link-menu%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [Juan Coronel](https://wordpress.org/support/users/juaancmendez/)
 * (@juaancmendez)
 * [3 years, 5 months ago](https://wordpress.org/support/topic/remove-generate-link-menu/#post-16316719)
 * Hello there,
   we hope you’re doing well!
 * In order to remove the “Link generator” and “Payments” sections from the affiliate
   dashboard menu, add the following code to the **functions.php** file of your 
   active child theme:
 *     ```wp-block-code
       if (!function_exists('yith_wcaf_dashboard_navigation_menu_remove_settings')) {
           function yith_wcaf_dashboard_navigation_menu_remove_settings($links){
               if (isset($links['generate-link'])) {
                   unset($links['generate-link']);
               }
               if (isset($links['payments'])) {
                   unset($links['payments']);
               }
               return $links;
           }
   
           add_filter('yith_wcaf_dashboard_navigation_menu', 'yith_wcaf_dashboard_navigation_menu_remove_settings');
   
       }
       ```
   
 * Check it out and tell us any news, please.
 * Have a nice day!

Viewing 1 replies (of 1 total)

The topic ‘Remove Generate Link Menu’ is closed to new replies.

 * ![](https://ps.w.org/yith-woocommerce-affiliates/assets/icon.svg?rev=3053144)
 * [YITH WooCommerce Affiliates](https://wordpress.org/plugins/yith-woocommerce-affiliates/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yith-woocommerce-affiliates/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yith-woocommerce-affiliates/)
 * [Active Topics](https://wordpress.org/support/plugin/yith-woocommerce-affiliates/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yith-woocommerce-affiliates/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yith-woocommerce-affiliates/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Juan Coronel](https://wordpress.org/support/users/juaancmendez/)
 * Last activity: [3 years, 5 months ago](https://wordpress.org/support/topic/remove-generate-link-menu/#post-16316719)
 * Status: not resolved