-
Author
-
June 12, 2018 at 04:12 #200586melikcanParticipant
how & where can I change design of members pages? ı have circled places ı want to change design in screenshoot .
June 12, 2018 at 18:50 #200645RaduModeratorThere is no composer if you that ask, the only panel where you can change the layput (sidebar,full and some settings) are located under wp-admin -> theme options- > buddypress in rest, the members page it’s generated dynamically by the buddypress and the file that controls that it’s this : /wp-content/themes/sweetdate/buddypress/members/members-loop.php
You can modify the templates by copying them on child theme in same directory structure
members directory loop : /wp-content/themes/sweetdate/buddypress/members/members-loop.php
So you can copy them on child /wp-content/themes/sweetdate-child/buddypress/members
If you perform code change, make sure the child theme it’s installed and activated
Cheers
R.Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 13, 2018 at 21:38 #200754melikcanParticipantI just want to enlarge pictures of in members searching area, they seem very little and faces of members cant seen properly, can we enlarge the pictures of members in search area?
Thanks.June 14, 2018 at 18:12 #200824RaduModeratorThat it’s a buddypress feature you can try the next
To increase the avatar size make sure that you have next lines added to the file.
COPY CODEif ( !defined( 'BP_AVATAR_THUMB_WIDTH' ) ) define( 'BP_AVATAR_THUMB_WIDTH', 120 ); //change this with your desired thumb width if ( !defined( 'BP_AVATAR_THUMB_HEIGHT' ) ) define( 'BP_AVATAR_THUMB_HEIGHT', 120 ); //change this with your desired thumb height if ( !defined( 'BP_AVATAR_FULL_WIDTH' ) ) define( 'BP_AVATAR_FULL_WIDTH', 580 ); //change this with your desired full size if ( !defined( 'BP_AVATAR_FULL_HEIGHT' ) ) define( 'BP_AVATAR_FULL_HEIGHT', 580 ); //change this to default height for full avatar
Code can be pasted in this file : “wp-content/plugins/bp-custom.php” or in child theme functions.php wp-content/themes/kleo-child/functions.php
Replace 120 and 580 with your desired values
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJune 15, 2018 at 15:08 #200871melikcanParticipantThank you very much ! There are rectangle places for profiles ,which include a circle profile picture , as I undetstand the sizes you mentioned are related with size of the rectangle , can we only change (make bigger) the picture in profiles rectangle ,I mean just changing the circled pictures in the rectangle ?
Thanks , Best Regards !June 18, 2018 at 14:41 #201145RaduModeratorHi,
That change should affect both of them circle and square, tried to take a look at your install but cannot see any profile, they are private, can you show me where the avatars are square to can understand better please ? and maybe providing any user credentials.Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionJuly 1, 2018 at 14:05 #202569melikcanParticipantHi
I want to delete footer how I will do it ? And I want to mobile screens seen same as deskop wiev. How can ı do it ?July 4, 2018 at 16:58 #202895RaduModeratorHi,
You can hide the footer easly using this css
COPY CODE#footer {display:none !important;}
Having same view on mobile like desktop it;s not possibe there are to mutch things to change for that and also no exact instructions for that.
Cheers
RHi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution -
AuthorPosts
You must be logged in to reply to this topic.