Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 35,676 through 35,700 (of 68,918 total)
  • Author
    Search Results
  • #123150
    @mercime
    Participant

    1. Open up your karma’s header.php and Save As header-buddypress.php. At the very bottom of header-buddypress.php, insert this code:
    `


    <?php
    //retrieve value for sub-nav checkbox
    global $post;
    $post_id = $post->ID;
    $meta_value = get_post_meta($post_id,’truethemes_page_checkbox’,true);
    if(empty($meta_value)){
    get_template_part(‘theme-template-part-subnav-horizontal’,’childtheme’);}else{
    // do nothing
    }
    ?>

    `
    Save and upload to karma theme folder in server.

    2. Create a blank new file, sidebar-buddypress.php and paste the following code:
    `

    `
    Save and upload to theme folder in server

    Note: If the above doesn’t work, contact Karma theme dev to give you HTML for full width you need to add before content area in header-buddypress.php I’m not sure whether the theme’s proprietary codes/hooks would work in this scenario since I don’t know what the hooks are and what they actually do since I don’t have a copy of that premium theme. You could point the Karma dev to this post for reference.

    #123148
    @mercime
    Participant
    #123147
    @mercime
    Participant

    Looks like you used the first method (changing 14+ BP template files) for Step 3 of BP Template Pack compatibility process and missed a few template files. The instruction has been updated on which files to change from 10 files to 14 or so files listed here https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles

    Better yet, you might want to consider the second method for Step 3 of compatibility process. Examples of second method:
    https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-eleven-bp-1-5/
    https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/

    #123349
    @mercime
    Participant
    #123162
    rishad
    Member

    hello moderators @mercime @hnla nd @r-a-y… wating eagerly to hear from u guys and also from others…

    #123156

    In reply to: BuddyPress 1.5.1

    @mercime
    Participant

    Cool :-)

    #123155
    @mercime
    Participant

    Your theme’s index.php is full-width and the page.php has hardcoded sidebar, a two-column layout. Which one were you trying to use for your BuddyPress pages?

    #123171

    In reply to: BuddyPress 1.5.1

    Mary Jane
    Member

    great job couldn’t thank enough but in next release could there be a official privacy module also wall pposting

    #122830
    Boone Gorges
    Keymaster

    Thanks for the details, @rossagrant. I’ve created a Trac ticket for the dev team to look into it. https://buddypress.trac.wordpress.org/ticket/3683

    #122829

    In reply to: BuddyPress 1.5.1

    Paul Wong-Gibbs
    Keymaster

    Boom!

    #122925
    rossagrant
    Participant

    @boonebgorges I know what configuration is causing this but I don’t know why.

    You can recreate this easily by installing a BP version previous to 1.5 (I used 1.2.10).

    Alter the base ‘Name’ field to something else. I used ‘Full Name’.

    Upgrade to BP 1.5 and you’ll see all of your First and Last names deleted from your DB.

    This leaves only the users ‘username’ showing on their profile, set to their ‘display publicly’ name.

    If you try editing the name from the front end, as soon as you click save, it reverts back to showing the username.

    If you change it in the backend, by re-adding the first and last names, they then show okay, but try changing the name from the front end again and the changes you just made in the back end get deleted and the username displays publicly again, replacing the First/ Last name.

    Now to fix this, you have to rename the base ‘Name’ field from your current ‘Full Name’ field back to just ‘Name’.

    You can then edit the field in the front end and backend successfully and your changes will save.

    You are now free to rename the base ‘Name’ field back to anything you like – again in my case ‘Full Name’ and it will all work again no probs.

    It’s as if BP needs clarification when the base ‘Name’ field is anything else but ‘Name’ after an upgrade to BP 1.5.

    If you have it set to ‘Full Name’ etc then it won’t play until you have renamed it back to ‘Name’ before changing it again.

    I hope that’s kind of clear. I know it’s long winded!

    Ross :)

    *** So to avoid this issue, make sure your base ‘Name’ field is labelled as just ‘Name’ before upgrading to BP 1.5.

    After that, you can alter it again, but if it’s anything but ‘Name’ on an upgrade, you’ll lose all of your First/ Last name data!

    #123387
    @mercime
    Participant

    Strange thing, Platform is tagged buddypress in WordPress Theme Repo so I would asume he had knowledge of the basic BP template files so he would give at least some support for the layout . You should contact theme dev for assistance.

    What’s missing is Step 3 of the BP compatibility process where you have to tweak either the BP template files transferred to your platform theme folder or create header-buddypress.php and sidebar-buddypress.php https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#fixalignment

    kkradel
    Participant

    OMG! Finally something that seems to have worked!!!!

    Thank you @mercime !

    #123381
    enderpal444
    Participant

    Solved. No thanks to this forum.

    Now for anyone with same question. Use a plugin called “Category Templates”. Open the php and add this to the beginning.

    // Set constant for current theme directory
    $dirname = get_stylesheet_directory();
    define(‘STYLESHEETPATH’, $dirname . ‘/’);

    Then edit lines 134 and 135 by changing to ‘TEMPLATEPATH’ to ‘STYLESHEETPATH’ on both lines.

    That worked for me.

    @mercime
    Participant

    @kkradel Add this to your stylesheet
    `div.item-list-tabs { clear: none !important; }`

    @mercime
    Participant

    @truelux not enough info. BP version? WP theme with BP template pack or BP theme or BP child theme? What theme are you using? If you have a premium theme, you should try get upgraded theme from dev site. If it’s your own child theme then site URL would be good.

    #121911
    enderpal444
    Participant

    Ive tried 3 different tutorials and nothing seems to help. I know someone probably knows how to do this and I would really like this to be the one out of 10 topics I actually get a response to.

    #121916
    Paul Wong-Gibbs
    Keymaster

    You should ask on WordPress.org; after all, BuddyPress is just a plugin :)

    #121915
    Paul Wong-Gibbs
    Keymaster

    No way to do this in core. Raise an enhancement suggestion ticket on https://buddypress.trac.WordPress.org :)

    #121940

    In reply to: Couple Thoughts

    alanchrishughes
    Participant

    Ahhhh, that is working now, thank you very much @boonebgorges

    The only other big thing I think is a problem and could be very confusing to people as I mentioned before, if User A posts on a group activity wall it then appears on their profile activity wall and User B can comment on it there and it will also appear on the group’s activity wall. People might not like that and thinking they were only commenting on their buddy’s wall. However, if User A comments on a blog or forum post, it also appears on their profile activity wall and people can still comment on it, but it then doesn’t appear on the original blog.

    I’m sure some people would like it one way or the other, I personally think blog, group, and forum posts should only then appear as notifications on a user’s activity wall without the option for others to comment on so that users are certain where their comments are appearing and avoid confusion and possible embarrassment.

    Either way it is just an inconsistency that has confused me at least and might be confusing others as well.

    #121949
    ARHistoryHub
    Participant

    @boonebgorges Not using BP_ENABLE_USERNAME_COMPATIBILITY_MODE. When I performed the upgrade, everything went smoothly. I think I had a typo that may have read otherwise.

    BUT, I had a revelation. In an effort to test out BP Media – I had my host upgrade my VPS server to PHP 5.3.8 at about the same time I fiddled around with upgrading to BP 1.5. I now realized that upgrading PHP seems to have broken rich’s Block Activity Stream Types plugin. Perhaps it also caused some problems with my BP installation as well? Is that just correlation or could there be causation there? Thanks Boone.

    #121944
    @mercime
    Participant

    This is a known issue which will be addressed sometime soon. You could google “buddypress.org bigonroad topicYouPosted” in the meantime.

    #121943
    @mercime
    Participant
    #121957
    KimMC
    Member

    @modemlooper I did here back from him, he’s to busy to help me fix the problem right now. :-( He’s working on the next version of the theme. I have no idea if it will fix my problems but I can only wait so long. As it is now my members can’t join groups or easily contact each other.
    Very frustrating as I had the theme set up exactly the way I wanted. I wouldn’t have upgraded yet, except the theme said it had been updated for BP 1.5 as well as their pack.
    It’s not the developer I’m upset with, he’s normally quick and great with help. I just don’t understand what’s causing the problem or how to fix it. I’ve also disabled ALL my plugins and it did not help.

    I thought it might be something with the theme install. So I’ve tried to remove it completely as well as the child theme I was using. I deleted it using the WP theme delete and removed their bp pack. When I reinstall it all my custom css colors are still there. Since I reinstalled from the WP installer and not uploading my old files they shouldn’t be there….
    Maybe the settings are stored in the database… But shouldn’t completely uninstalling the theme remove that?

    #121959
    davelopware
    Member

    I’ve done a tweak to post-form.php that allows admins and moderators of a group to post directly into the activity stream, but prevents anyone else from doing it (in my case I want members of the group to use the Forums for discussion).

    More details available including the code and how to install it are here: http://daveamphlett.com/2011/10/12/buddypress-activity-streams-vs-forums/

    Note: this is just for BuddyPress 1.5

Viewing 25 results - 35,676 through 35,700 (of 68,918 total)
Skip to toolbar