-
Author
-
January 21, 2015 at 17:38 #42939
AlexC
ParticipantI have a couple of small changes I would like to make, and I’m not entirely sure how to do these.
One – I would like to add an additional link to the Profile dropdown menu – more specifically, I’d like to add a “Edit Profile” link. I added another link via the header.php file in the child theme, but its not showing up on the site at all. Here’s my code, inserted after the ‘settings’ link.
COPY CODEif( bp_is_active('profile')) { $profile_menu['profile'] = '<li><a href="' . bp_loggedin_user_domain().'profile/edit/">'. __("Edit Profile", "buddypress").'</a></li>'; }
Two – This might not be so much you guys, but, I’ve installed “like” and “flag” plugins, and for some reason, they’ve got blocks of colour around them. I’ve searched the plugin files, but I can’t find any CSS for it, so I’m assuming the theme is assigning a class to them, and giving them colour – not sure which it is.
Screenshot; http://awesomescreenshot.com/0f948oxe28
Three – Is it possible to hide the profile block, or at least make it significantly smaller on mobile screens, so users don’t have to scroll as much?
January 21, 2015 at 17:48 #42940AlexC
ParticipantOh! As well as a fourth thing – how do I make the content space for the activity / members / group pages wider? I tried the nine / three column thing in the right-sidebar file, but it hasn’t worked. Since I added extra links on the profile, they aren’t all on one line, and I’d like some more space.
January 22, 2015 at 20:58 #43079Laura
ModeratorHello, can you share your wp-admin and ftp access? I can do the changes for you and also post them here for others.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 22, 2015 at 21:17 #43089AlexC
ParticipantI’ll admit, I’m a little uncomfortable giving my login details to a stranger – if you’re posting edits here for others, can’t I just make the changes you post myself? Or do you need to see the files to know what’s wrong?
January 23, 2015 at 03:19 #43126Laura
ModeratorHello, in order to archieve what you want, i need to test css, but if you prefer, you can just share your website link as a private post, so i can test it with chrome developer console.
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 23, 2015 at 03:31 #43132Laura
ModeratorHello, can you give me a simple user account? I need to login to see the activity flag and like
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 24, 2015 at 06:43 #43301Laura
ModeratorHello, for flag button, use this in style.css from child theme:
COPY CODE.button:hover, .button:focus, .form-search .button, .form-search .button:hover, .form-search .button:focus, .wpcf7-submit:focus, .wpcf7-submit:hover, #rtmedia-add-media-button-post-update:hover, #rt_media_comment_submit:hover, .rtmedia-container input[type="submit"]:hover { background-color: #3f375d; border: 1px solid rgba(129, 129, 129, 0.07); color: #FFFFFF; background: #A81010; padding: 5px; border-radius: 4px; } .button, ul.sub-nav li.current a, .item-list-tabs ul.sub-nav li.selected a, #subnav ul li.current a, .wpcf7-submit, #rtmedia-add-media-button-post-update, #rt_media_comment_submit, .rtmedia-container input[type="submit"] { border: 1px solid rgba(129, 129, 129, 0.07); color: #A90F0F; background: #E8E8E8; padding: 5px; border-radius: 4px; }
Let me know if it works so we can continue 🙂
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 24, 2015 at 20:10 #43329AlexC
ParticipantYes, that fixed the button problem! (Or at least, I was able to use to it to figure out how not to show a button – I think that fix did some other things I wanted, though)
January 25, 2015 at 07:29 #43359Laura
ModeratorHello, for the profile size, you can use this https://archived.seventhqueen.com/forums/topic/reduction-in-the-header-of-the-presentation-of-the-profile#post-42614
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
January 26, 2015 at 01:08 #43403AlexC
ParticipantThat’s not really what I’m looking for – I’m fine with the size of the header when its on a desktop computer, but I’d like to make the profile fields disappear and the avatar become much smaller when viewing on a mobile device.
January 26, 2015 at 01:56 #43410Laura
ModeratorHello, try this:
COPY CODE@media only screen and (max-width: 940px) { #profile #item-header-avatar .avatar { border: 6px solid; width: 60%; margin-left: 20%; } [class*="column"] + [class*="column"]:last-child { float: none; display: none; } }
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
February 20, 2015 at 08:34 #46853InGamer
ParticipantI would also like to add the edit profile in the profile drop down menu. What is the fix for this?
Thanks!
February 22, 2015 at 14:47 #47106Laura
ModeratorHello, please check out this post https://archived.seventhqueen.com/forums/topic/customizing-the-profile-menu
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solutionLaura Solanes - Graphic Designer and Web Designer
Please be patient as I try to answer each topic as fast as i can.
If you like the theme or the support you've received please consider leaving us a review on Themeforest!
Always happy to help you 🙂
-
AuthorPosts
You must be logged in to reply to this topic.