Load different content to the user profile tab
Use this hook:
function mycustom_user_menu($menus){ $link = 'YOUR_USERPRO_LINK_FUNCTION' //replace this $menus['profile'] = array( 'slug' => 'profile', 'title' => 'Directory details', 'link' => $link, 'order' => 4, 'public' => false); return $menus; } add_filter('ap_user_menu', 'mycustom_user_menu');
Zoker (Buyer) commented
Can I anyhow overwrite the content in anspress-question-answer/theme/default/user/profile.php
?
Zoker (Buyer) commented
Push
Rahul Aryan commented
Yes, that what I asked to do. simply copy this file to your theme like: MY_ACTIVE_THEME/anspress/user/profile.php
What will this hook do?