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!