• 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 to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    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:

    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.