Profile page issues

This topic contains 19 replies, has 5 voices, and was last updated by  Kenneth 4 years, 6 months ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #515539

    Kenneth
    Full Member
    Post count: 66
    This reply has been marked as private.
    #515570

    Patrik
    Moderator
    Post count: 1971

    Hi,

    Still I can’t regenerate the issue. It might be the cache issue on your side or something else. I have replaced the previous CSS with the following CSS. Please check and let me know if it helps:

    
    
    .uwp-profile-header img.rounded-circle, .uwp-login-class img.rounded-circle {
        max-width: 100px;
    }

    Regards,
    Patrik

    #515580

    Kenneth
    Full Member
    Post count: 66
    This reply has been marked as private.
    #515583

    Stiofan O’Connor
    Site Admin
    Post count: 22956

    Hi,

    For the counts if your simply want to remvoe it you can add this code snippet

    add_filter( 'uwp_get_user_post_counts', '__return_empty_array' );

    Or if you want to remove say events you would do this

    
    
    add_filter( 'uwp_get_user_post_counts', '_my_edit_uwp_post_counts',10,2 );
    function _my_edit_uwp_post_counts($counts, $post_types){
        
        if(isset($counts['gd_event'])){unset($counts['ge_event']);}
    
        return $counts;
    }

    Thanks,

    Stiofan

    #515588

    Kenneth
    Full Member
    Post count: 66

    Perfect! Thank you.

Viewing 5 posts - 16 through 20 (of 20 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket