This topic has 19 replies, 4 voices, and was last updated 7 years by Radu.

  • Author
  • #150569
     maddmatt
    Participant

    I have a couple of issues, firstly with the home page, the menu is there but it’s like it is transparent, you can hover over where the links should be. I cheated a little bit (just so I could see it while working on it) I added a layer in the slider where the menu should be. I wanted to have the homepage menu the same as the rest of the site, how do I do this? I also would like to have the top menu included on the homepage too.

    The next issues were listed on your support, but they did not work for me.

    I wanted to have the default page you click on for a member go to Profile instead of Activity, I tried the solution and it did not work.

    I also wanted my own login page for the link for login, I also followed the instructions for this with no success.

    I absolutely love this theme and can’t wait to finish my website, I’d like to thank you in advance for your help.

    #150683
     Laura
    Moderator

    Hello, can you share access so i can check it out?:)

    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 🙂

    #150698
     maddmatt
    Participant

    How do I share access?

    #150724
     Abe
    Keymaster

    Hi, the problem with the menu comes from the fact that you selected it to be transparent from one of these two possible locations, please check:
    – WP admin – Theme options – Header
    – The respective page edit – Theme settings box – Transparent header.

    After you disable the transparent header it will all show nicely.

    For the other questions Laura will gladly guide you.

    Cheers

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution

    ---
    @ SeventhQueen we do our best to have super happy customers. Thanks for being our customer.

    #150727
     maddmatt
    Participant

    Hey,

    Thanks so much for that, worked like a charm! I didn’t have the screen options on the edit page part so didn’t see the menu option, thanks again.

    In addition to the other small problems I had, here are a couple more:

    When going to a members page, can you hide any of the menu options? I would like to hide the Members Activity part and link it elsewhere.

    Also is it possible to customize the Login popup?

    Thanks so much guys 🙂

    #150820
     maddmatt
    Participant

    I have 2 other small problems, sorry for all the little problems but I am confident that once these are fixed it will be complete.

    On edit profile, the Date of Birth isn’t bold, but yet the other editable parts are.

    With the bio part, I can only choose ‘text-box’, is it possible to make this a little larger like a bio field (test-message)?

    Lastly, how do I change the top menu background color? I tried the custom css area but it did not work.

    Again, thanks for your time.

    #150976
     Laura
    Moderator

    Hello, if you want to hide the members activity page, you can disable activity at Settings > Buddypress, but if you only want to hide it at the member profile, then you do it using this css

    COPY CODE
    
    li#activity-personal-li {
        display: none;
    }
    

    Add it to style.css of child theme

    For the login popup, what kind of changes do you want to do? 🙂

    Date of birth text, add this to style.css of child theme

    COPY CODE
    
    .profile legend {
        font-weight: bold;
        color: #1e73be;
    }
    

    I see the bio part as an area of text so i guess you fixed that one?
    Top bar background color css

    COPY CODE
    
    .header-color.social-header {
        background-color: black !important;
    }
    
    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 🙂

    #150996
     maddmatt
    Participant

    1. Hiding the Activity in the member area didn’t work.

    2. With the login popup I wanted to change the writing and maybe the background color, just to customize it.

    3. Sorry the Date of Birth and Platform are not bold when editing profile, they are find when viewing the profile.

    4. Yeah I fixed the text-area part I missed the option there.

    5. And finally, the top menu background worked.

    I’m so close to finishing, it’s just those couple things I can’t figure out… 1, 2, 3.

    #151000
     maddmatt
    Participant

    Oh sorry, and also I wanted so when you click on your profile picture in the top menu, instead of going to My Account I wanted it to go to Profile.

    #151181
     maddmatt
    Participant

    I did mention this in the original post, but the most important thing is to be able to use your email as your username… I really need that asap, the others aren’t that important, but with this once it’s done I can launch the website.

    I don’t want usernames, I want the email as the username.

    Kind regards.

    #151198
     maddmatt
    Participant

    The username part, never mind, it’s not important and from what I read is not possible.

    With my website, where the notification part pops down, how do I change the red diamond? I need it black so it blends in with the drop down.

    #151213
     Laura
    Moderator

    Hello, for 1, use this
    https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
    and this at style.css

    COPY CODE
    
    li#activity-personal-li {
        display: none !important;
    }
    

    2- KLEO LOGIN MODAL

    COPY CODE
    
    div#kleo-login-modal {
        background: red;
    }
    .kleo-pop-title-wrap.main-color {
        background: red;
        color: white;
    }
    

    3-

    COPY CODE
    
    .profile legend {
        font-weight: bold !important;
        color: #1e73be !important;
    }
    

    At the profile, it goes to my profile, not my account

    Email or username login https://es.wordpress.org/plugins/login-with-username-or-email/
    Notification diamond color

    COPY CODE
    
    .kleo-toggle-submenu:before {
        background-color: black !important;
    }
    
    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 🙂

    #151437
     maddmatt
    Participant

    Thank you so much! Everything is working except 1 small problem.

    I added the BP Login Redirection plugin, and it works, so when a user logs in it redirects them to the Activity Feed which is what I want. I have made the homepage the sign up page, and that works when you click my logo when not logged in, but when you’re logged in the logo takes you to the members page?

    Is this a problem you can help me with or is it the plugin stuffing it up?

    #151445
     maddmatt
    Participant

    Oh and how do I change the title, at the moment it will show the Page Title then the Blog name… for example Members – Playtendo

    I want it to display: Playtendo | Members

    #151683
     Laura
    Moderator

    Hello, making the register page the homepage will always redirect users to it, so the homepage should be another page, maybe add a page with a registration button only visible to guest,s using the VC element and then the rest for logged in users, using the same element
    For the title there is not an option for that

    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 🙂

    #151706
     maddmatt
    Participant

    Much thanks again, I will try that 🙂

    Before I do though, my website header is messing up, the menu has moved next to the logo, not sure what is the problem.

    This is the LAST thing that needs to be fixed LOL I know I said that before, but I am sure this is it now.

    Many thanks.

    #151707
     maddmatt
    Participant

    Sorry also when you click on Members it goes all funny, I’m sure it’s something to do with the general header php file

    #151715
     maddmatt
    Participant

    Just an update, it works fine in Chrome but is doing the above mentioned problems in Firefox.

    #151837
     Laura
    Moderator

    Hello, will assign the ticket to a higher support level who can help and advise you in your query.
    Thanks! ?

    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 🙂

    #151904
     Radu
    Moderator

    Hi,

    Laura has assigned this to me, please let me know what are your current theme problems ?

    Cheers
    R

    Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution
Viewing 20 posts - 1 through 20 (of 20 total)

The forum ‘Bugs & Issues’ is closed to new topics and replies.

Log in with your credentials

Forgot your details?