• Resolved frontier123

    (@frontier123)


    How can I remove extra profile information like social media links in the user profile Pinnacle free theme?
    I tried code below to no avail.

    <?php
    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’);
    ?>

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hey,
    This should do what your wanting:

    function my_child_startup() {
    	remove_action( 'show_user_profile', 'pinnacle_show_extra_profile_fields' );
    	remove_action( 'edit_user_profile', 'pinnacle_show_extra_profile_fields' );
    }
    add_action('init', 'my_child_startup');

    Ben
    Kadence Themes

    Thread Starter frontier123

    (@frontier123)

    Perfect!
    THX

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove extra profile information’ is closed to new replies.