How to edit the layout of member profile page

Home Forums Legacy Support Support queries Styling issues How to edit the layout of member profile page

Tagged: ,

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #135678
    Jimmy
    Participant
    Hi there, I couldn't find any solution that how to edit the layout of member-profile page in the forum. Could you please help me? The page URL is like this: www.domain.com/members/name/ I'v attached the screenshot pic below: http://prntscr.com/h9gtsq As you can see, there are some elements wrong in styling. And also, I'd like to change the order of the contents in the page, such as to move the courses section below the member's bio. Looking forward to your reply. Thank you! Jimmy      
    #135704
    Diana
    Participant
    @Jimmy, This is because of your background image refer : http://prntscr.com/h9ppjc For instructor images : Please Go to wp_admin -> Appearance -> customize -> custom css and paste the below given css in the editor .page-template-default .block.courseitem.course3 .block_content .course_instructor {top:-5px;} To show bio before course : Please Go to wp_admin -> Plugins -> editor -> select wplms customizer plugin and paste the below given code   add_action('init','custom_hide_certificate_badge'); function custom_hide_certificate_badge(){ remove_action('bp_before_profile_content','wplms_show_profile_snapshot'); remove_action('bp_before_profile_content','wplms_show_instructor_courses',11); } add_action('bp_after_profile_content','wplms_show_profile_snapshot'); add_action('bp_after_profile_content','wplms_show_instructor_courses',11);
    #136311
    Jimmy
    Participant
    Thank you Diana, it works!
Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to edit the layout of member profile page’ is closed to new replies.