Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #371571

    FoggyFood
    Participant

    Sorry I couldn’t disable 3rd party plugins as it would make my site look bad sorry for any inconvenience.

    #371751

    Friech
    Moderator

    Hi There,

    With the latest release of X|Theme, the BuddyPress v2.3.2.1 should be supported. Can you confirm this? Please clear your browser’s cache and any caching plugin that the site might have, to make sure the site serving the latest files/codes.

    Thanks!

    #372974

    FoggyFood
    Participant

    Yes I can confirm that on your website it says that X is compatible with buddypress 2.3.2.1 but that is not the case for me.

    My Website has never had caching plugins and clearing my browser’s cache did nothing anything else I should try?

    Thanks!

    #373197

    Christian
    Moderator

    Hey Foggy,

    Please disable all third party plugins while we investigate. Cornerstone must remain active so we could check if it conflicts with BuddyPress. Also, please delete and install BuddyPress again.

    Thanks.

    #377061

    FoggyFood
    Participant

    All done!

    #377264

    Rue Nel
    Moderator

    Hello There,

    There was an error thrown in your site. A white screen usually means there is a fatal PHP error. Can you please enable WP_DEBUG mode? You can do this by opening wp-config.php and adding
    define( 'WP_DEBUG' , true ); just above /* That's all, stop editing! Happy blogging. */ For example:

    define('WP_DEBUG', true);
    
    /* That's all, stop editing! Happy blogging. */

    When you revisit the page with the white screen, you should have some error output describing the issue in more detail.

    We have enabled this ourselves and found out this error:
    Fatal error: Call to undefined function bp_get_activity_directory_permalink() in /home3/foggyfoo/public_html/wp-content/themes/x/framework/functions/global/plugins/buddypress.php on line 427

    This appears because you have turn off the activity stream. Please enable this again by going to Settigns > BuddyPress > Activity Streams. Once enabled, this should resolve the issue.

    Please let us know how it goes.

    #379170

    FoggyFood
    Participant

    Thank you very much for this it would have taken me forever to figure this out you have saved me a lot of time. 🙂

    I have just one more request how would I change the color of the header and the footer. (I’m pretty sure there must be somewhere to change but not to sure where)

    thanks alot

    #379356

    Rad
    Moderator

    Hi there,

    What part of the header? Background color, text color, or link color? If it’s background color, then you may add this css at your custom css.

    .x-navbar {
    background-color: #000;
    }
    
    .x-colophon {
    background-color: #000;
    }
    

    Thanks!

    #656243

    FoggyFood
    Participant

    Hi there again I was just wondering how would you change the background colour of the footer and how would you change the background colour for drop down menu (please find image attached)

    Thanks for the help!

    #656246

    FoggyFood
    Participant

    Sorry i sent the wrong image to you.

    here’s the right one

    #656248

    FoggyFood
    Participant

    Also one more thing, would it be possible to change the colour of the text in the drop down menu.

    Thanks for everything!

    #656537

    Rue Nel
    Moderator

    Hello There,

    To change the background color of your footer, please add the following css code in the customizer, Appearance > Customize > Custom > CSS

    footer.x-colophon {
        background-color: #e5e5e5;
    }
    
    footer.x-colophon,
    footer.x-colophon a {
        color: #fff !important;
    }

    To change the background color and the text color of the sub menu, please add the following css code in the customizer, Appearance > Customize > Custom > CSS

    .desktop .sub-menu {
        background-color: red;
    }
    
    .desktop .sub-menu a {
        background-color: transparent;
        color: #fff !important;
    }
    
    .desktop .sub-menu a:hover {
        background-color: #333;
        color: #fff !important;
    }

    Feel free to change the color to suit your site colour scheme.
    Hope this helps. Please let us know how it goes. Thank you.