Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 5,301 through 5,325 (of 31,073 total)
  • Author
    Search Results
  • #245387
    shanebp
    Moderator

    If it was nginx, why do the links work in theme 2015 ?

    #245386
    Venutius
    Moderator

    Trouble is other then the lack of buddypress support I really like my theme, I guess that’s always going to be an issue unless I can find an alternative that has the right look and feel. None of those that were listed for example seem to support a header image, which I find is desirable. Also, they tend to be a bit too buddypress centric as far as I can see.

    #245379
    Paul Wong-Gibbs
    Keymaster

    Pretty sure next set of templates will have members as a grid, yes. All of the popular third-party BuddyPress themes have done it like this, so we’d be foolish to not do the same.

    #245375
    shanebp
    Moderator

    1. Other people do have this issue. It’s due to the use of some hook in their theme or a plugin.

    2. Something in your theme is rewriting or redirecting urls.

    #245373
    robert198222
    Participant

    1st issue: How come no one else gets this issue? I have a plain installation (manually installed) of wordpress and a theme installed (no core files are edited).

    2nd issue. I tried switching to WP theme 2015 and it’s working. Not sure what needs to be done to make it work with my theme?

    /Robert

    #245370
    shanebp
    Moderator

    1st issue: a plugin is calling bp_setup_current_user too soon – using a hook that fires before BP is ready. This can be tricky to track down.

    2nd issue: All the links look correct. It’s probably an issue in your custom theme. To confirm, try switching to a WP theme like 2015.

    #245360
    YesPapa
    Participant

    Yep. You can look at Premium ThemeForest Themes by example.

    And when we look at the default attached informations to a member list entry, I think too much spaces are loosed for only few informations. Have a member grid can be great to optimize the area page and don’t have to scroll too much.

    #245359
    Venutius
    Moderator

    Are there any Themes that show these lists as grids?

    #245355
    shanebp
    Moderator

    I repeat:

    This is most likely related to something in your theme.
    To confirm, try switching to a WP theme, maybe 2015.

    #245347
    Henry Wright
    Moderator

    So it is better for this plugin to do the styling.

    BuddyPress is intentionally built to be flexible. Even though it works well “out-of-the-box” it isn’t designed to be finished. If we added everything to core, then it would bloat the project. The idea is for you to extend your own personal copy of BuddyPress with plugins and themes to make it unique. There’s 2m+ BuddyPress sites out there (according to the number of downloads) and we wouldn’t want them all looking and acting the exact same.

    #245343
    Michael Bryner
    Participant

    Best request so far on this forum and surprised you reopened this thread. Buddypress, bbPress, and WordPress are so easily close the threads before anything is even discussed and easily just assumes its better to go to a theme author to implement it when it not the theme author that works on this plugin at all. Theme Authors are 3rd party. So it is better for this plugin to do the styling.

    #245338
    shanebp
    Moderator

    It’s easy to add a member’s display name.
    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.php

    Then replace this:

    	<?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?>
    		<h2 class="user-nicename">@<?php bp_displayed_user_mentionname(); ?></h2>
    	<?php endif; ?>

    With this:

            <?php if ( bp_is_active( 'activity' ) && bp_activity_do_mentions() ) : ?>
                <h2 class="user-fullname">
                    <?php bp_displayed_user_fullname(); ?>
                    <small>@<?php bp_displayed_user_mentionname(); ?></small>
                </h2>
            <?php endif; ?>
    #245332
    shanebp
    Moderator

    @stockton – do you mean BuddyBoss theme?
    You should ask the theme authors about your issue.
    If you’re using multi-site, be sure to tell them that.

    #245330
    stockton88
    Participant

    Mine is Boss theme.

    My profile menu is kinda missing as well.

    Is there any way to bring them back?

    There is no wall , message, profile ETC

    #245329
    shanebp
    Moderator

    This is most likely related to something in your theme.
    To confirm, try switching to a WP theme, maybe 2015.

    #245287
    Venutius
    Moderator

    I know in the theme I am using I can create a secondary menu bar, and using a plugin I can hide the contents of this from my logged out users. Does your theme allow this?

    Otherwise I’m not sure how you would create this second menu without coding, I can’t see any plugins that would do that.

    #245276
    Venutius
    Moderator

    Think that option may depend on the theme that you are using having the option for a second menu bar.

    Another way of doing that would be to add all of the items to the one menu bar, then set half the items to be viewed only by non-logged in users and half the items viewable by logged in users only

    #245268
    mrsminkie
    Participant

    It sounds as though I’d be making the site much more cumbersome than it needs to be, and it already has a lot of plugins for functionality.

    I will test the multi-site with secondary BuddyPress blog one day, but for now, I’ve decided to just try and work within the theme as best I can.

    I do think that multi-site, although perhaps overkill, is what I needed to be able to keep my userbase constant and able to log into either site (area), while allowing content to be shared across the network.

    Thanks for your advice!

    #245258
    Henry Wright
    Moderator

    Your theme not being suitable for standard pages isn’t reason enough to use multisite. It might solve your problem but it is kind of like using a sledgehammer to crack a nut. Have a read of this article, it will give you some things to think about before you go down the multisite path.

    #245255
    mrsminkie
    Participant

    I understand what you’re saying about keeping things simple but unfortunately, the BuddyPress theme is very much orientated towards being a social network and isn’t suitable for standard pages, nor is it very easy to create custom templates for – I have already created quite a few to handle custom post types.

    Additionally, the main menu of the BuddyPress theme is an extension of the admin bar, and it doesn’t support a dropdown menu. I could only add choices to the profile dropdown (with profile, photos, friends etc.) which is far from ideal.

    #245253
    Henry Wright
    Moderator

    If I understand your requirements right, I wouldn’t use multisite for this. I also wouldn’t use separate installs.

    Considering you just need a main site area and a BuddyPress area, I would aim to keep things as simple as possible and address this problem with a custom theme. You can add a /your-theme/buddypress/ folder which contains all of your BuddyPress templates. Then it’s just a case of styling both the main area and your BuddyPress pages to look consistent.

    #245199
    William
    Participant

    Hi @zabelator

    Try adding this to “style.css” in your active theme

    #buddypress .acomment-meta a, #buddypress .activity-header a, #buddypress .comment-meta a {
        text-decoration: none;
        pointer-events: none;
        cursor: default;
    }
    #245194
    William
    Participant

    Hi @canadianmusicnetwork

    Try adding this to “style.css” in your active theme

    #buddypress #activity-stream p {
        color: #FFFFFF;
    }
    #245170
    mrjarbenne
    Participant

    No. that php tag will need to be at the bottom of the content templates eg: index.php page.php if it’s not there. Depending on the theme you might have a few different templates. There is a hierarchy of which gets loaded first: https://developer.wordpress.org/themes/basics/template-hierarchy/

    So are you saying that with all the plugins except BP deactivated, running the a default (twentyxx) theme, you are still seeing the issue?

    #245165
    mrjarbenne
    Participant

    Have you attempted to deactivate all of your plugins as well to see if there is a culprit there? Usually Adminbar issues crop up if the <?php wp_footer(); ?> tag is missing. Usually this is a theme thing, but on occasion a poorly coded plugin can create a similar error. Given that the issue seems to be role-based, that might indicate it’s a plugin trying to do some funky things based on user-role.

Viewing 25 results - 5,301 through 5,325 (of 31,073 total)
Skip to toolbar