Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 32 total)

  • Fee
    Participant

    @wdfee

    same here with
    WordPress 3.6 (upgraded)
    BuddyPress 1.8.1 (upgraded)
    BP Default Theme

    I opened a ticket on this: https://buddypress.trac.wordpress.org/ticket/5140


    Fee
    Participant

    @wdfee

    I don’t know this theme – did you asked for help at theme forest, yet? (If not please do that)


    Fee
    Participant

    @wdfee

    Hi Ron,

    first of all thanks for the compliment including me into ‘BP Folks’. So, I’m not part of the BP team (not yet…), I’m just an advanced user and dev for my own clients.

    There were big changes in the last development versions (both bbPress and BP) and the documentation is not up to date. The devs put most of their time in developing the features – it would be great if some volunteers would come up, advanced users, to complete the documentation (that’s a lot of work, too). Everything you find here is done by the devs and the community (including folks like you) and offered for free. Maybe you can keep this in mind when you are more experienced in a few month to please come back and contribute something to the community as well. Like answering here in the forums, writing documentation and so on 😉

    To answer your question: On the bbPress settings page you can change the slug for the forums. If you didn’t change it, it’s ‘forums’ – e.g. yourdomain.com/forums/
    So go to your menus, set up an own menu, include a Link to Forums, save this menu to your primary navigation.

    all I see on the nav bar is Home, Activities, Members, Sample Page. Nothing about groups or forums.

    Did you activate ‘User Groups’ in the BuddyPress settings?


    Fee
    Participant

    @wdfee

    please append to your groups directory url /create/ (e.g. http://mydomain.com/groups/create/ ) and see if you can access it


    Fee
    Participant

    @wdfee

    Can you post a link to your site?


    Fee
    Participant

    @wdfee

    With multisite I mean both sites inside of one installation: https://codex.wordpress.org/Create_A_Network
    There you can activate BP on the main site, then all the community stuff will go there. You can add another site (subdomain) and run your WP stuff there. But that’s not that easy, too. Read throught the linked page if this would be a possibility for you.

    Otherwise maybe the easiest would be just to switch completely to the new theme…


    Fee
    Participant

    @wdfee

    If your theme has BP template files you can delete them, you don’t need them anymore (or if you did far customizations you’d have to go through the files for changes). If your theme is a child theme of BP you should take a look into your functions.php if you’re overriding something. In the first lines of your style.css is there something like Template: bp-default or Tags: buddypress?


    Fee
    Participant

    @wdfee

    Did I get you right: ‘Community’ means the BP features like groups, members, acivity – ‘main site’ means other WP pages and your WP blog? So, no that’s not possible. You’d have to either enhance your theme or separate the site into community on the main site of a mulsitite install and the rest on a subsite.


    Fee
    Participant

    @wdfee

    bp_member_profile_data( ‘field=the field name’ ); –> try bp_member_profile_data( ‘field=Class’ );


    Fee
    Participant

    @wdfee

    Does your theme have BuddyPress template files? Did you check using a standard theme (twentytwelve for example) if the issue appears there, too?


    Fee
    Participant

    @wdfee

    bp_blog_description() is working for me.


    Fee
    Participant

    @wdfee

    With BP 1.7 and bbPress 2.3 it became really easy. Just install them the usual plugin installation way (automatic through WP or via FTP).
    Best is you first activate BuddyPress, you will see a welcome screen with a direct link to the settings. Change them if you want.
    Then go back to plugins and activate bbPress, you will see a welcome screen again. You will see three new admin menu items (Forums, Topics, Replies). Got to Forums and add a new forum, maybe called “Group Forums”. Got to the bbPress settings under Settings -> Forums. Change them if you want – and scroll down to the very last option: Activate group forums for BuddyPress. Choose you’re Group Forum, save it. – That’s all! Now go ahead and create your first group via BuddyPress in frontend group directory.


    Fee
    Participant

    @wdfee

    What do you want to do exactly?

    A. You can run a multisite installation with BP network activated. There each subsite can use it’s own theme, only the mainsite needs a theme that is comfortable with BP. But since BP 1.7 there should every theme be supported.

    B. If you wish to keep the styles of Tersus theme on your main site, but have to override some functionality – You could make an own child theme of Tersus theme and override it’s behaviour.


    Fee
    Participant

    @wdfee

    Short answer: Yes it is. The question is how comfortable you need the language management (e.g. the connection of content between languages).

    The newest version of WPML seems to have the ability to serve domains for different languages. Did’nt try it yet. http://wpml.org/
    If not you could do it manually using WPML or qtranslate. Setup a subsite for each language and turn the preferred language for this site on in the site settings.

    Your question seems not to be directly related to buddypress. But if you’re looking for that – there is a plugin by WPML for buddypress: https://wordpress.org/extend/plugins/buddypress-multilingual/


    Fee
    Participant

    @wdfee

    oh how embarrassing! I forgot to change the database details in the bb-config.php after switching to another database, the name was to similar that I first didn’t realize… So, maybe this way I could be a help for others here. Do check your database details twice!


    Fee
    Participant

    @wdfee

    I’ve the same problem. I’m still checking through my installation and plugins if it’s really caused by BuddyPress itself. When I know more I’ll write it down here.


    Fee
    Participant

    @wdfee

    Oh my God, this was really easy! The answer is on the linked page https://codex.buddypress.org/extending-buddypress/bp-custom-php/, the code changed for 1.5:

    <div class="bbcode_code">
    <div class="bbcode_code_head">Code:</div>
    <div class="bbcode_code_body">function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );</div>
    </div>

    Fee
    Participant

    @wdfee

    @boonebgorges Sorry I’ve to ask, just a short question: Do you think an update of your plugin concerning this problem would be possible?


    Fee
    Participant

    @wdfee

    Could it be this page doesn’t run the current version 1.5.1, because in the development process these problems disappeared on testbp?


    Fee
    Participant

    @wdfee

    or hide with css:

    .join-group { display:none; }


    Fee
    Participant

    @wdfee

    the login data are wrong. maybe you can try with css.

    one tipp: use php comments instead of html comments, it’s much cleaner. instead of:

    Code:
    <!–removed <php bp_profile_group_tabs(); ?> code and replaced w/whats below—>

    use:

    Code:
    <?php // removed bp_profile_group_tabs(); code and replaced w/whats below ?>

    or:

    Code:
    <?php /* removed
    bp_profile_group_tabs();
    code and replaced w/whats below */ ?>

    Fee
    Participant

    @wdfee

    A Login Panel. There are different Plugins that give you an alternate login widget, some let you change the text before and after.


    Fee
    Participant

    @wdfee

    are there other possibilities now?


    Fee
    Participant

    @wdfee

    ?? I’ve no idea what Heymansoks opinion is about. But I have these problems, too and told about it more than once in this forum.


    Fee
    Participant

    @wdfee

    Oh, both doesn’t work with branch 1.5 (#5338), neither the plugin nor the code. Does anybody know why, what changed there?

Viewing 25 replies - 1 through 25 (of 32 total)
Skip to toolbar