Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 1,876 through 1,900 (of 7,446 total)
  • Author
    Search Results
  • #182021
    jerryskate
    Participant

    Ok, a bit better πŸ™‚ Still having my profilename outside the classes, but got all the old ones back.

    <body jerryclass="activity bp-user my-activity my-account just-me buddypress bbp-user-page single singular bbpress page page-id-5 page-template-default logged-in admin-bar no-customize-support bp-wall adminbar-enable not-responsive this-is-a-member-profile member-profile-of-" class=" customize-support" data-twttr-rendered="true">

    #182010
    jerryskate
    Participant

    Yeah thats what i was thinking too. Seemed kinda weird to me. body.classname would be the obvious choose for me, but well.. weird output. need to fiddle around with it a little to see if i can get it to work. Too bad it filters out all the other classes though. This is how it looks without the filter:

    activity bp-user my-activity my-account just-me buddypress bbp-user-page single singular bbpress page page-id-5 page-template-default logged-in admin-bar bp-wall adminbar-enable not-responsive customize-support

    Wish i could keep those classes and have the bodyclass of the user added.

    #182001
    jerryskate
    Participant

    Hmm there we go. I now get <body jerryclass="" class=" customize-support" and its consistent throughout the priflepage. it does however give me less other classes, which is a problem in my bbpress where i have used the classes for customization there. Maybe i can work around that.

    Im unsure how to use the this bodycalss with css though, i tried .jerryclass, #jerryclass, body.jerryclass.. Nothing seems to work. Any guidance there would be appreciated.

    Thanks for the replies, feels close know!

    #181973
    palmdoc
    Participant

    OK got the types wrong and got to=he info from the table in phpmyadmin

    Anyway this code works in ones custom function.php

    // Filter bbPress from updating activity stream
    function imath_activity_dont_save( $activity_object ) {
    $exclude = array( 'bbp_topic_create', 'bbp_reply_create');
    
    // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
    if( in_array( $activity_object->type, $exclude ) )
    $activity_object->type = false;
    
    }
    
    add_action('bp_activity_before_save', 'imath_activity_dont_save', 10, 1 );
    #181972
    palmdoc
    Participant

    I just tried that and it doesn’t prevent bbPress from updating the Activity stream πŸ™

    #181971
    palmdoc
    Participant

    @sharmavishal: It doesn’t seem to work for me
    I put Blocked Activity Types:
    new_forum_topic, new_forum_post
    and the bbPress topics and replies still go thru


    @naijaping
    and anyone, what should the code be? Like this? :

    // Filter bbPress from updating activity stream
    function imath_activity_dont_save( $activity_object ) {
    $exclude = array( 'new_forum_topic', 'new_forum_post');
    
    // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
    if( in_array( $activity_object->type, $exclude ) )
    $activity_object->type = false;
    
    }
    
    add_action('bp_activity_before_save', 'imath_activity_dont_save', 10, 1 );
    #181967


    @palmdoc
    , @benny390

    You can try @imath solution and edit it accordingly to include bbpress.

    /* beginning of the code to paste in the functions.php of your active theme */

    ‘function imath_activivity_dont_save( $activity_object ) {
    // friendship_created is fired when a member accepts a friend request
    // joined_group is fired when a member joins a group.
    $exclude = array( ‘friendship_created’, ‘joined_group’);

    // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
    if( in_array( $activity_object->type, $exclude ) )
    $activity_object->type = false;

    }

    ‘add_action(‘bp_activity_before_save’, ‘imath_activivity_dont_save’, 10, 1 );’

    #181966
    palmdoc
    Participant

    I also tried the plugin
    https://wordpress.org/plugins/buddypress-block-activity-stream-types/
    but it seems it’s an orphaned one not updated for a couple of years
    What I really hope to do is to prevent bbPress new topics and replies from appearing in the Activity stream – it’s really quite redundant I feel

    Help anyone?

    elaborate
    Participant

    I guess I might as well add the details now.

    My work so far has involved editing the bbPress and BuddyPress template files. I add the forms from the bbPress Edit page’s template file and paste them in the BuddyPress Settings page’s template file, which I then use.

    My problem is that the data for the users profiles does not appear in the relevant bbPress Edit fields now that the forms reside on the BuddyPress settings page with a different URL.

    I looked up how HTML forms work with PHP and found out that the action attribute in a <form> tag is the URL for the destination of the input, so you might think that changing the URL of the bbPress forms to the BuddyPress Settings page would solve the problem, but it doesn’t.

    Doesn’t the user data need to be sent to and retrieved from the database somehow?

    Thanks.

    #181894
    tunjic
    Participant

    I am experiencing this same problem, but oddly (and significantly, I suspect) not every group redirects to the forums.

    This makes me think it is not theme related, but maybe an upgrade problem caused by a database key not flipping. Possible?

    Also, I am not using the “Howdy Bar.” I am using BBPress 2.5.3

    #181886

    In reply to: Email Notifications

    sharmavishal
    Participant
    #181846

    In reply to: Email Notifications

    Craig
    Participant

    Thanks @shanebp, I’ll try that.

    In the meantime I’ve found a plugin that works really good.

    https://wordpress.org/plugins/bbpress-notify/

    chrisipeters
    Participant

    I am running bbPress for forums, and woo commerce, but other than that nothing user impacting.

    I did the WP3.9 update after which everything was fine,
    Then buddypress2.0, after which I experienced the error.

    #181767

    In reply to: Email Notifications

    shanebp
    Moderator

    Have you tried asking in the bbPress support forums?
    https://bbpress.org/forums/

    #181737
    DennisBarkerCV
    Participant

    This sounds like something that can be achieved without multisite.You can use Buddypress Groups and bbPress running as a forum for each group to achieve the discussion / chat.

    Each project could become a BuddyPress Private Group with its own forum / docs.

    If you want a seperate blog for each project then that would require multisite,but one blog categorised by project could achieve the same thing without the additional comlexity.

    #181667
    foxden vixen
    Participant

    I have a feeling that they won’t update it. The theme can be free or paid in 2 tiers. I paid for the developer version. I just might have to scrap it and call it a loss and find another theme that I can work with that will be buddypress and bbPress compatible. Thanks for your help.

    #181537

    In reply to: Buddypress roles

    laura.lee
    Participant

    I am not using BuddyPress for a forum. I am using BuddyPress for only volunteer groups on my website. I am just getting started with that. I tried to control access to the Group Page by WordPress Member Role… and running into issues. I see that persons want role control for reasons probably like mine. My site is a team membership site, it is not open to the general public. It’s not the vision of a community forum that I think persons are trying to force from their own vision of what a BuddyPress site “should be like”. πŸ™‚ It’s like they are trying to force a square into round hole thinking that there should be no admin management by WordPress user role. πŸ™‚ They’re thinking of an “open community”… and this is a closed community. If persons registered to my site and went to become member of a team in my team group… they would mess up my whole site and all of my volunteer structure. Not just anyone can join a volunteer team in my site.

    So, enough said about why the BuddyPress vision of everyone is equal and should have power on a hosted website hosted by an individual for a specific cause… just is not a conducive philosophy to my website and my group creation.

    But, here is a plug-in. I have reasons why it conflicts a bit with other things I am using… and I am not ready to implement this. But, check it out please…

    http://presspermit.com/wp-content/uploads/PP-RS-Feature-Grid.pdf

    – BuddyPress group as Permission Group

    is an option on both the free and pro version of Permit Plus.

    https://wordpress.org/plugins/press-permit-core/faq/

    Can Press Permit Pro do everything Role Scoper can do?
    Press Permit Pro introduces some important new features, including custom post statuses,

      BuddyPress group role assignments and bbPress compatibility

    . For most sites, it is a functional equivalent to Role Scoper, with major improvements in UI and performance. A few of Role Scoper’s more obscure features are not currently provided by PP Pro:

    HTTP Authentication for feeds
    Supplemental roles and restrictions for links defined in wp-admin/link-manager.php
    Customization of NextGEN Gallery editing permissions

      Group membership requests and recommendations (but supplemental roles can be assigned to BuddyPress groups, inheriting any membership control)


    Role assignment for limited content date range (but membership in custom-defined permission groups can be date-limited)

    http://presspermit.com/extensions/

    Plugin Extensions:
    PP Compatibility Pack
    PUBLISHED IN PLUGINS, PRESS PERMIT ON JUNE 7, 2013
    PP Compatibility Pack
    Adds compatibility and/or integration with bbPress, Relevanssi, CMS Tree Page View, Subscribe2, BuddyPress, WPML, various other plugins. For multisite, provides network-wide permission groups.

    Read & Discuss Β»
    PP Circles
    PUBLISHED IN PLUGINS, PRESS PERMIT ON JUNE 7, 2013
    PP Circles
    Visibility Circles and Editorial Circles block access to content not authored by other group members. Any WP Role, BuddyPress Group or custom Group can be marked as a Circle for specified post types.

    Read & Discuss Β»
    PP Buddypress Role Groups
    PUBLISHED IN PLUGINS, PRESS PERMIT ON JUNE 7, 2013
    PP Buddypress Role Groups
    Modify any BuddyPress group’s access to specified content. Assign type-specific supplemental roles and post-specific exceptions as with PP-defined groups.

    ********

    I haven’t tried these… I am not far enough along in my website construction. Plus, sadly, the role scoper has group request and add… the new version doesn’t… and I am as stubborn as a horse lead to water that won’t drink… when asked to give up a feature I LOVE!! πŸ™‚ I don’t want to give up that group feature I would lose from Role Scoper. So, I have not migrated.

    Here’s some solutions for you that you can try, that I have read about.. but I have not tried myself yet.

    **The author of these plug-ins ought to be a multi-millionaire… but lacks in sales and marketing skills. πŸ™‚ But, I’m helping him out here for free. lol

    Blessings!

    Cheers!

    Laura Lee

    #181527
    Texrat
    Participant

    Sorry to post again. The problem seems to be a conflict between the new “Manage Signups” function and another plugin. I thought maybe bbPress, but it could also be “Confirm User Registration” by Ralph Hortt: http://www.horttcore.de/

    Right now I cannot get any of 167 users out of Manage Signups. If I Activate someone, they remain there afterward.

    I deactivated “Confirm User Registration” and now plugins are all out of whack. I can’t even view the Plugins page. I need to disable all of them and start over…

    #181525
    Texrat
    Participant

    Ok, some more details…

    I was able to get in by way of another (generic) admin account I had set up. I can now see my texrat account had WP role set to “no role for this site” on the profile edit page. However, looking at the User list, it says “Spectator” for WP role and forum role (I should be Keymaster for the latter), which is the default *forum* role for bbPress. So maybe bbPress is the interfering plugin in my case?

    Anyway, I’m fixed now.

    Also, all of our bbPress members who did not have any forum role assigned yet now show as Pending.

    #181181
    cinderalla
    Participant

    Figured it out πŸ™‚ For anyone else trying to move breadcrumbs, here’s what I did.

    In stylesheet added #bbpress-forums div.bbp-breadcrumb { display:none; }

    In my bbpress.php file added <div class="breadcrumbs"><?php bbp_breadcrumb(); ?></div>

    That error isn’t anywhere in bbPress; bbPress’s is:

    ERROR: Your topic needs a title.”

    It happens from inside the bbp_new_topic_handler() function, which bails early if the $_POST action is not bbp-new-topic which makes it pretty unlikely you’re seeing a bbPress error under normal circumstances.

    Is it possible some other plugin is causing this?

    #180851
    Anonymous User 5853594
    Inactive

    Nope… What you’re referring to is the User Groups component, which can link groups to a specific bbPress (2.x) forum.
    Have you tried if it works with bbPress 2.5.3, with all other plugins disabled and using a default theme?

    #180832
    Renato Alves
    Moderator

    Hi @janiceandcompany, put your question also in the bbPress support forum. I think it’s more likely to find a person with the same problem, and solution, there rather than here.

    I tried changing here the forum status and it did stop showing to the general users. Are you logged in as an administrator? Or are you seeing this as a general user?

    #180812
    Halo Diehard
    Participant

    @tietoep the Group Forums I am speaking of *are* bbPress, as chosen by the BuddyPress Group in the Group’s settings. I explained this quite clearly in the first post πŸ˜‰

    #180805
    Anonymous User 5853594
    Inactive

    @halo-diehard
    The Group Forums component in BuddyPress has been retired and it is indeed advised to use bbPress (version 2.x).

Viewing 25 results - 1,876 through 1,900 (of 7,446 total)
Skip to toolbar