Notice: These forums are now retired and closed. For active support, please Submit a Ticket or visit our official WordPress.org community pages.
Kadence Theme | Kadence Blocks | Starter Templates | WooCommerce Email Designer | Ascend | Virtue | Pinnacle

remove “Extra profile information for author box” in kadence theme

Home / Forums / Kadence Theme / remove “Extra profile information for author box” in kadence theme

This topic is: Resolved
[Resolved]
Posted in: Kadence Theme
November 30, 2022 at 2:21 am

Hello
I’m trying to remove the “Extra profile information for author box” that the kadence theme adds to users profile.
Tried both solutions that appear in other posts here in the forum (remove action ‘kad_show_extra_profile_fields’ and ‘ascend_show_extra_profile_fields’) using code snippets, tried disabling the theme, deleting the fields via toolset, but they keep coming back.
Can someone point me to the right direction?

TThanks in advance
Regards
Alex

————-
The code snippet I used:
————-

function my_child_startup() {
remove_action(‘show_user_profile’, ‘kad_show_extra_profile_fields’ );
remove_action(‘edit_user_profile’, ‘kad_show_extra_profile_fields’ );
}
add_action(‘init’, ‘my_child_startup’);

function my_child_startup2() {
remove_action( ‘show_user_profile’, ‘ascend_show_extra_profile_fields’ );
remove_action( ‘edit_user_profile’, ‘ascend_show_extra_profile_fields’ );
}
add_action(‘init’, ‘my_child_startup2’);

  • The forum ‘Kadence Theme’ is closed to new topics and replies.