Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 976 through 1,000 (of 7,561 total)
  • Author
    Search Results
  • #264146
    hughb1
    Participant

    Hi,

    I recently migrated from BBpress and Buddypress, but my users are getting a lot email notification from old mentions. Is there a way of disabling those without disabling all email notifications?

    Thanks.

    Hugh

    #264034
    danbp
    Participant

    Hi,

    not the solution, but more a way to resolution and to see how you could do that title adjustment.
    Read here.

    WP function reference you have to explore:
    pre_get_document_title
    wp_title

    ..anything related to “title” in bbPress.

    #264023
    djsteveb
    Participant

    page titles for member profile pages and group pages are not easy to change up – I posted some info I got a while back on this, but before I go digging for that info, I wonder if you really mean groups like buddypress groups.. since your url fragment there has “forum” in it – you may be refering to page title for the forums which I think is more of a bbpress issue (?) –

    #264001
    danbp
    Participant

    Hi,

    did you considered this plugin ?

    #263903

    In reply to: Cannot Sign up

    Bradley Ross
    Participant

    I have .htaccess
    I have loaded the entire system three times and followed the directions
    I have made sure that all of the files have an owner of _www

    I have already screamed and will probably do so again. I am currently using

    Apple Macintosh macOS 10.12.3
    Wordpress 4.7.2
    Theme: TwentySeventeen
    bbPress 2.5.12
    BuddyPress 2.8.0
    Jetpack 4.6

    The requested URL /blogs/wordpress/template/members/bradleyross/profile/edit/ was not found on this server.
    The page register has the permalink http://localhost/blogs/wordpress/template/index.php/members
    Does this sound correct

    It also appears that multiple attempts to load the software may result in things like members-2 and members-3. You may have to send pages with those permalink to the trash and then empty the trash. Hopefully, you can then recreate the pages correctly

    I now assume that the problem is somewhere in the rewrite module. In the httpd.conf file, I am going to change the line Allow None to Allow FileInfo. Does this sound reasonable and are there any other changes you think that I should make.

    in httpd.conf, I have

    LoadModule alias_module libexec/apache2/mod_alias.so
    LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    #
    # The two following lines had been commented out as part of the
    # update July, 2015. They are now being uncommented to
    # put them back in
    #
    LoadModule php5_module libexec/apache2/libphp5.so
    LoadModule hfs_apple_module libexec/apache2/mod_hfs_apple.so

    and

    <Directory “/Library/WebServer/Documents”>
    #
    # Possible values for the Options directive are “None”, “All”,
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that “MultiViews” must be named *explicitly* — “Options All”
    # doesn’t give it to you.
    #
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.4/mod/core.html#options
    # for more information.
    #
    # The attribute Includes was added 17-Feb-2017
    Options FollowSymLinks Multiviews Includes
    MultiviewsMatch Any

    #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be “All”, “None”, or any combination of the keywords:
    # AllowOverride FileInfo AuthConfig Limit
    #
    AllowOverride None

    #
    # Controls who can get stuff from this server.
    #
    Require all granted
    </Directory>

    #263897
    kodacollider
    Participant

    Right now my Members page has the slug ‘members’, and when viewing a user’s profile, the URL is:

    /members/user/

    However, all other components on my site (bbPress forums, custom post types, etc.) use a plural slug for the “archive” and then singular when viewing a child page. I’d like to make the members area of BuddyPress behave the same way for consistency.

    So I’d like the Members page to retain the slug /members/

    But when viewing a user’s profile, I’d like it to become:

    /member/user/

    It just makes more sense given how everything else on my site works. I hope this makes sense.

    Can anyone lend me a hand?

    Thank you!

    #263895
    egimen25
    Participant

    Hello, I have been playing with the bbpress plugins in locahost, all good except for the following:

    1.- Overlap of the fields DEBATES and PUBLICATIONS in the page of forum
    2.- How to modify the texts of the fomulario beginning of section of forum, Example:
    Remind me to change it by Remember my password
    Registration modified by Register account
    Password lost by Restore password.

    Thank you for your help in correcting the solution.

    regards

    mikeboltonca
    Participant

    Hi Slava,

    I tested that code and got no visible effect, but I think we’re in the right territory here.
    I explored both of these functions:

    bp_group_is_member()
    groups_is_user_member()

    It helped me realize that the two specific problems I wanted to solve were as follows:
    – Users can’t create topics in a BuddyPress group’s forum unless they join the group
    – Users can’t reply to topic in a BuddyPress group’s forum unless they join the group

    So I started on the page template itself (form-topic.php).
    Before displaying the “Create a topic” form, the template does a check to see if the user is allowed to create topics:
    if ( bbp_current_user_can_access_create_topic_form() ) : ?
    This was coming back as false, so I checked through each possible path through the function.

    Here’s the whole function for quick reference:

    function bbp_current_user_can_access_create_topic_form() {
    
    	// Users need to earn access
    	$retval = false;
    
    	// Always allow keymasters
    	if ( bbp_is_user_keymaster() ) {
    		$retval = true;
    
    	// Looking at a single forum & forum is open
    	} elseif ( ( bbp_is_single_forum() || is_page() || is_single() ) && bbp_is_forum_open() ) {
    		$retval = bbp_current_user_can_publish_topics();
    
    	// User can edit this topic
    	} elseif ( bbp_is_topic_edit() ) {
    		$retval = current_user_can( 'edit_topic', bbp_get_topic_id() );
    	}
    
    	// Allow access to be filtered
    	return (bool) apply_filters( 'bbp_current_user_can_access_create_topic_form', (bool) $retval );
    }

    Every single path through that function was returning true.
    If I removed the filter and replaced it with a hard-coded true as follows…
    return (bool) true;
    …then the user would have access to the group’s forum without joining the group.

    That told me that something in BuddyPress was filtering the result of this function. It was checking whether the user was a member of the group, and if not, was forcing bbp_current_user_can_access_create_topic_form() to return 0.

    I couldn’t find the portion of BuddyPress that was filtering the result, unfortunately.

    I have a working solution now, but it’s not elegant. I created a plugin with two filters (one for creating topics, one for replying to topics). The content of those filters is identical to the original bbPress functions. Since the plugin is loaded last, it basically overrides whatever BuddyPress says and goes with the original functions instead.

    Here it is:

    /**************************************************
    Part 1: Allow users to create topics
    Allow anyone to create a topic in any forum, even if that forum is inside a group the user hasn't joined.
    If the group is hidden (e.g. "Management"), they still won't have access because that check is done first.
    ***************************************************/
    // define the bbp_current_user_can_access_create_topic_form callback
    function filter_bbp_current_user_can_access_create_topic_form( $retval ) {
    	// Users need to earn access
    	$retval = false;
    
    	// Always allow keymasters
    	if ( bbp_is_user_keymaster() ) {
    		$retval = true;
    
    	// Looking at a single forum & forum is open
    	} elseif ( ( bbp_is_single_forum() || is_page() || is_single() ) && bbp_is_forum_open() ) {
    		$retval = bbp_current_user_can_publish_topics();
    
    	// User can edit this topic
    	} elseif ( bbp_is_topic_edit() ) {
    		$retval = current_user_can( 'edit_topic', bbp_get_topic_id() );
    	}
    return (bool) $retval;
    };
    
    // add the filter
    add_filter( 'bbp_current_user_can_access_create_topic_form', 'filter_bbp_current_user_can_access_create_topic_form', 999, 1 );
    
    /**************************************************
    Part 2: Reply to comments
    Allow anyone to reply to a comment in any forum, even if that forum is inside a group the user hasn't joined.
    If the group is hidden (e.g. "Management"), they still won't have access because that check is done first.
    ***************************************************/
    function filter_bbp_current_user_can_access_create_reply_form( $retval ) {
    
    	// Users need to earn access
    	$retval = false;
    
    	// Always allow keymasters
    	if ( bbp_is_user_keymaster() ) {
    		$retval = true;
    
    	// Looking at a single topic, topic is open, and forum is open
    	} elseif ( ( bbp_is_single_topic() || is_page() || is_single() ) && bbp_is_topic_open() && bbp_is_forum_open() ) {
    		$retval = bbp_current_user_can_publish_replies();
    
    	// User can edit this topic
    	} elseif ( bbp_is_reply_edit() ) {
    		$retval = current_user_can( 'edit_reply', bbp_get_reply_id() );
    	}
    
    return (bool) $retval;
    };
    // add the filter
    add_filter( 'bbp_current_user_can_access_create_reply_form', 'filter_bbp_current_user_can_access_create_reply_form', 999, 1 );

    If I can find where BuddyPress filters bbp_current_user_can_access_create_topic_form() and bbp_current_user_can_access_create_reply_form(), I’ll write a more elegant plugin.

    mikeboltonca
    Participant

    Howdy,
    I use BuddyPress as part of a company intranet. Our BuddyPress Groups are used as a quick way to find who works in a particular department or location.

    For our purposes, it makes sense for any staff member to be able to use any groups’ activity stream and bbPress forums, without having to join that group. The only exceptions would be for hidden groups, such as our Management group; they should still be invisible to non-members.

    I’ve done a lot of research into different ways to tackle this problem, but I haven’t found anything viable yet.

    Can anyone recommend an approach to explore?

    Thanks a lot for your ideas, folks.

    #263767
    _natty_
    Participant

    i need some feature on my site and i wonder if there is something ready and cooked for me 🙂
    I need to allow an user to create group of discussion and creating a document of a certain “post type” that can be edited just from the users that form this group.

    for now i’ve installed bbpress and im going to configure the option “Foroums for groups” but to me is not so clear to give the user’s right privilege to edit a document -post type- any suggestion?

    cheers

    #263766
    kibbles
    Participant

    first of all, i’m new to the plugin and wordpress and i am building a website with community features. feel free to tell me about some cool plugins that hook into buddypress to add functionality (i already know about bbpress).
    _____________________________________________________

    on the wordpress dashboard in settings, buddypress, components, there is an unchecked feature named “site tracking”. what is this exactly and what does it do?

    i am using the buddypress login widget. the only tabs it has are the user name and the logout button. is there a way to add more tabs to this like friends, private messages, forum topics (when bbpress is installed), etc?

    in the options menu i can enable/disable users uploading profile picture and cover picture. is there an option to limit whether they upload a photo to the site or use a url to post the photo? can i make it so that i can select stock images for user to choose their profile picture and cover picture from?

    i notice there is also support for additional community interaction like grouping and posting on group pages. is there a way for users to have their own personal mini blogs that can be viewed by other users?

    how would i go about customizing the design/layout of user profiles?

    any other advice for me?

    #263721
    warezit
    Participant

    To follow up…

    I dug through the forums here a bit more, and re-checked my work (removing tables and keys from the database). I did not remove all settings from the database.

    After disabling and removing the BuddyPress plugin, then backing up my database… I loaded up phpmyadmin > wp_options table > search for bp_ and bbp_ (I know “bbp_” if for bbPress, I just wanted a clean reset) and then removed all those settings from the database. Re-installed a fresh download of BuddyPress, and we’re all set. BuddyPress has been reset to “out-of-the-box” settings, and I am able to create groups again! Woohoo!

    Hopefully this helps someone else! Thank you again for reaching out r-a-y. I am happy I didn’t have to bug anyone tremendously to get this resolved. 🙂

    Cheers!

    rageshr007
    Participant

    Hi Venutius….Thanks for your prompt reply….I had found root cause of the issue…in Buddy Press setting page Group Forums (Legacy one) was enabled e..When i disable that BBpress start to function fine….. :O)

    rageshr007
    Participant

    Hi…I m going through a tough time..Here is my setup…I had buddy press and BB press installed on my intra-net site…I have bb private groups created by department vice and create each department bbpres private forums which linked to respective departmental group from admin panel.(Froum -> create new->select Forum->Private. and on group -> create new group-> select status as private and enable ” Yes. I want this group to have a forum.” and select desired department forum from drop down)..Hope this is the correct steps i had followed…Intention is only members belongs to respective departmental group should be able to start and discuss a topics with in their departmental private forum.

    But when i go to a department group with a member log in of that group via front end…on forum tab add new topics option is there…But when i add new topic the ,pages refreshes and back to same add topic page..I cannot find any where the topic i had added..but few lines of the topic shows in the home tab of the buddy press front end.but not full content of the topic ..Then I had tried to add topic from admin panel..There i could add ..but that topic is not visible to receptive group forum tab from front end….Another wared thing ,i had already enabled “allow the group have its own forum ” option..But when i create a new group ,the wizard asking me to give forum name then on next step create forum for this group ,but this option is disabled ..I cannot make it “on” ..!!

    So i m confused how this BDP and BBP combination works…I had referred several videos on-line and all shows as simple steps…but i m not sure why i cannot have private group forum with topic the members can start and discuss on it…can any one shed light on this wared issue.!!!

    webshik
    Participant

    Hi there,

    Is there a plugin that anyone knows or a coding way that I would be able to display the buddypress activity feed which be able to update itself? I mean, now when someone at my website do action like update a post, the activity feed record this action, but if this user change the topic / date of this post or even if the user change his profile name / image – the activity feed still display the old record.
    I understand how it works like record the activity to a place to the DB and just print it, but does someone knows another different way to display a real time feed that updates the old feed?

    Also I need the activity feed to be flexible:
    display blog posts, buddypress activity, bbpress activity,
    admin customize like edit activity, delete, hide activity metas and filter.

    Please help.

    Thanks in advanced.

    Md Sadiqur Rahman
    Participant

    Hi there,
    I am using buddypress and bbpress. I got a problem in forum notification. For subscribed forum, I get email for both new topic and reply. But I do not get notification for NEW TOPIC in website profile toolbar (for reply, its working fine). Can anyone help me out?

    porubcansky
    Participant

    Site: lettermo.com
    WP Version: 4.7.2
    BP Version: 2.7.4
    bbpress: 2.5.12

    Other Plugins:
    * Akismet
    * BadgeOS
    * BuddyPress Pending Activations
    * FAQTastic
    * FD Footnotes
    * GD bbpress tools 1.9
    * Jetpack
    * Members
    * Personal Welcome
    * WangGuard

    Custom theme: lettermo.com

    There doesn’t appear to be a bp-custom.php file.

    WordPress and BuddyPress both were working fine on the site prior to a move to WP Engine as the new host.

    After the move to the new host, we have experienced two problems. It feels like they both might be simple and/or related but we can’t track it down yet. Will pull server error logs and add after posting.

    *** Comments all posting to the hello-world post instead of the correct post.

    For example, notice that the comments on this page: http://lettermo.com/2017/01/2017lettermo-cards/

    have been posted to the comment thread for this original post: http://lettermo.com/2016/02/hello-world/

    *** Friendship Requests are reported in the interface but users are getting a “You have no pending friendship requests” when they try to view them.

    More explanation here: http://lettermo.com/forums/topic/problems-with-friendship-requests/

    #263432
    thasmas
    Participant

    Hi I came across this great post from 3 years ago and I wounder if we have any “good changes” on those plugins, mentioned there… I really need Pre-booking, Attending Buttons without paying (YES, MAYBE, NOT ATTENDING) –
    Way to contact these Audience who marked “MAYBE ATTENDING”, waiting list and compatible with BBpress which means Members could be able to create and manage events from the front end….

    thanks,

    Hello!

    I am currently setting up and developing a social media site based on WordPress/BuddyPress but can’t find a single event plug-in, that meets our requirements:

    1. Users can submit events
    2. Integration in the BP Frontend/Profiles
    3. Ability for recurring events
    4. Usage of custom Post Types and Taxonomies for Events and Locations
    5. Ability to show intention to attend (like in Facebook)
    6. Ability to invite others (your friends) to an event by BP messages or BP notifications
    7. Activity Stream entrys for creating and attending events
    8. Sell tickets (preferably integrating mit MarketPress or WooCommerce).
    9. Granular Shortcodes and Template-Tags for complete customization of output.

    I would gladly pay 500 or even 1,000 dollars for a plug-in that does it all!

    I started off with looking at a plug-in, I’ve been using for 4 years now: Events Manager. Its VERY well documented, has loads of shorttags and complies with 1/2/3/4/7/8/9. But it cant invite other users by internal BuddyPress functions and you cant say “I’ll attend” without “buying” a ticket.

    Then I came upon Event Espresso. Nice and polished and with some extra features like QR-Code tickets and a mobile app to have a digital check-in. It also exposes all content through a JSON API possibly making a mobile app integration (like with PhoneGap) much easier. It also offers seating plans for variable tickets. But again: no invitation or notification through BuddyPress. No “Attend” and “maybe” buttons like in FB. And no BuddyPress integration, not frontend event submission and unless you have bought a license you cant check, what shortcodes it has to offer. Certainly a more tight-lipped approach to technical support.

    For a long time I thought, these are the major players I have to choose among, before I became aware of Events+ by WPMU. Incredibly, it seems to be the only WordPress events plugin mimicking the FB way of showing your intention to attend. The “Attend” and “Maybe” buttons are front and center of this plugin, along with recurring events and a system to buy tickets (integrated with MarketPress). It even allows different ticket prices based on user level/role. But a lousy pre-sales documentation and limited number of shortcodes and again: no internal invitation feature.

    I googled again and again, before I found a reference to the original BP events plugin, seemingly abandoned by its (too good not to ne hired by Facebook) developer. This plug-in, was apparently able to invite friends of the event organizer through BuddyPress notifications. It hasnt been developed further since then, it seems, and it came with a peculiar “feature”: all people invited were automatically registered as attending. If everything in life would be so easy

    #263426
    prophet224
    Participant

    So, my site is working fine so far with one exception. Although the additional user profile fields that I have added appear in Registration, and appear as options to modify their visibility in Settings (and currently show set to ‘Everyone’), the additional fields and any data filled into them during Registration do not appear when viewing a user’s profile. All new fields have been added to the ‘Base’ group, but only ‘Name’ appears.

    There are a bunch of things working together, so I think maybe something is overriding the new fields, but I’m not sure what.

    I have tested this on Twenty-Fifteen and the problem still occurs.

    Below are the main plugins in play, and the site link. Thank you for any help or suggestions.

    – Matt

    Site: http://test.corsairs.network
    Theme: Atahualpa 3.7.24
    BuddyPress v2.7.4
    BuddyPress for Learndash v1.1.0
    bbPress v2.5.10
    LearnDash and bbPress Integration v1.2
    LearnDash LMS v2.2.1.2

    shanebp
    Moderator

    Are you using BuddyPress?
    bbPress has a separate support forum.
    Your error message shows that it is caused by this plugin: smartlib-tools.
    You should talk to the creators of that plugin.

    Levchenko11
    Participant

    Hello. I’m not well versed in code, please help fix the problem.
    On the forum page get this error message:

    Fatal error: Uncaught Error: Call to undefined function get_current_screen() in /home/pvokrum/aprks.com/docs/wp-content/plugins/smartlib-tools/vendor/shortcode-ui/inc/class-shortcode-ui.php:85 Stack trace: #0 /home/pvokrum/aprks.com/docs/wp-content/plugins/smartlib-tools/vendor/shortcode-ui/inc/class-shortcode-ui.php(134): Shortcode_UI->enqueue() #1 /home/pvokrum/aprks.com/docs/wp-includes/class-wp-hook.php(298): Shortcode_UI->action_wp_enqueue_editor(Array) #2 /home/pvokrum/aprks.com/docs/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(”, Array) #3 /home/pvokrum/aprks.com/docs/wp-includes/plugin.php(453): WP_Hook->do_action(Array) #4 /home/pvokrum/aprks.com/docs/wp-includes/class-wp-editor.php(822): do_action(‘wp_enqueue_edit…’, Array) #5 /home/pvokrum/aprks.com/docs/wp-includes/class-wp-hook.php(298): _WP_Editors::enqueue_scripts(”) #6 /home/pvokrum/aprks.com/docs/wp-includes/class-wp-hook.php(323): WP_Hook->apply_filters(”, Array) #7 /home/pvokrum/aprks.com/docs/wp-includes/plugin.php(453): WP_Hook->do_ in /home/pvokrum/aprks.com/docs/wp-content/plugins/smartlib-tools/vendor/shortcode-ui/inc/class-shortcode-ui.php on line 85

    Here is the page where the error occurs http://aprks.com/forums/forum/forum-nashego-sajta/
    WP 4.7.2
    bbPress 2.5.12
    Installed theme: https://rocksite.pro/demo/bootframe/

    #263304

    In reply to: Forums: 500 Error

    shanebp
    Moderator

    You have a better of getting a answer on the bbPress forums.

    #263300
    JamieLe
    Participant

    Hi, can’t provide link to page because it’s a private / paid site: fapsa.org.uk

    When I try to go to Forums I get ‘HTTP ERROR 500’ and this in my error log:

    [30-Jan-2017 18:21:55 UTC] PHP Fatal error: Cannot redeclare class WP_Taxonomy in /home/fapsa******/public_html/wp-content/plugins/buddypress/bp-forums/bbpress/bb-includes/backpress/class.wp-taxonomy.php on line 17

    Any suggestions?

    #263184
    ecodemy
    Participant

    Hi @danbp
    it’s a bit tricky to judge who is responsible without knowing the code at all. As the forum pagination is working with bbPress and only not in BuddyPress groups, I thought this here might be the right place to ask. Sorry for that.

    I have not contacted bbPress Support because I thought the group forum feature comes with Buddypress. Well, if I deactivate bbPress I don’t have any problems and I don’t have any group forums …

    #263182
    danbp
    Participant

    I ignore if wishlist is BP compatible. And you describe an issue between bbPress and Wishlist, a premium plugin.
    And nothing at this stage indicate that BuddyPress is implicated. Have you tested your membership plugin without bbPress active ? Do you still have trouble when on a group ?

    Outside the fact we can’t help you for such not open source product, have you contacted them and the bbPress support ?

Viewing 25 results - 976 through 1,000 (of 7,561 total)
Skip to toolbar