• Resolved dhonest

    (@dhonest)


    Good day. I need the functionality to not show cover photo and profile photo in the profiles.
    I had removed the following code and it worked; But the challenge is that it takes away the profile editing button with it. Please help.

    * @type action
    		 * @title um_profile_before_header
    		 * @description Some actions before profile form header
    		 * @input_vars
    		 * [{"var":"$args","type":"array","desc":"Profile form shortcode arguments"}]
    		 * @change_log
    		 * ["Since: 2.0"]
    		 * @usage add_action( 'um_profile_before_header', 'function_name', 10, 1 );
    		 * @example
    		 * <?php
    		 * add_action( 'um_profile_before_header', 'my_profile_before_header', 10, 1 );
    		 * function my_profile_before_header( $args ) {filter
    		 *     // your code here
    		 * }
    		 * ?>
    		 */
    		do_action( 'um_profile_before_header', $args );
    
    		if ( um_is_on_edit_profile() ) { ?>
    			<form method="post" action="">

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @dhonest

    You can disable the Profile Cover photo when you enable the “Customize this form” > turn off “Enable Cover Photos” in the Profile Form via UM Form Builder.

    For the Profile Photo, you can hide it with CSS.
    .um-profile-photo { display: none !important; }

    Regards,

    Thread Starter dhonest

    (@dhonest)

    It will not whow avata right

    and where do i paste this CSS code?

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @dhonest

    You can add it to your theme’s style.css or to your theme’s customizer.

    Regards,

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @dhonest
    …This thread has been inactive for a while so we’re going to go ahead and mark it Resolved.

    Please feel free to re-open this thread by changing the Topic Status to ‘Not Resolved’ if any other questions come up and we’d be happy to help… ??

    Regards,

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Remove Profile and Cover Photo’ is closed to new replies.