This topic has 15 replies, 3 voices, and was last updated 9 years by Laura.

  • Author
  • #42939
     AlexC
    Participant

    I 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 CODE
     if( 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?

    #42940
     AlexC
    Participant

    Oh! 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.

    #43079
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #43089
     AlexC
    Participant

    I’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?

    #43126
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #43130
     AlexC
    Participant
    This reply has been set as private.
    #43132
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #43133
     AlexC
    Participant
    This reply has been set as private.
    #43301
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #43329
     AlexC
    Participant

    Yes, 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)

    #43359
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #43403
     AlexC
    Participant

    That’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.

    #43410
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

    #43418
     AlexC
    Participant

    Thank you, I was able to get that to work for me!

    #46853
     InGamer
    Participant

    I would also like to add the edit profile in the profile drop down menu. What is the fix for this?

    Thanks!

    #47106
     Laura
    Moderator

    Hello, 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 solution

    Laura 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 🙂

Viewing 16 posts - 1 through 16 (of 16 total)

You must be logged in to reply to this topic.

Log in with your credentials

Forgot your details?