Search Results for 'bbpress'
-
AuthorSearch Results
-
September 4, 2014 at 3:45 pm #189610
In reply to: Simple Way to Enable Image posting in Forums
shanebp
Moderator>most people using forums expect to be able to insert images into their posts nowadays.
Agreed.
Because BuddyPress and bbPress are two separate plugins, don’t expect BuddyPress to address this issue.
I’ve never used it, but try the free version of
https://wordpress.org/plugins/gd-bbpress-attachments/September 4, 2014 at 2:35 pm #189606shanebp
Moderator>To import the messages we are using the bbpress function messages_new_message( $args )
That is a BP function.
In it, near the bottom, you will see:
do_action_ref_array( 'messages_message_sent', array( &$message ) );
That is the hook to send email if the member has that Setting set to Yes.The function messages_message_sent is in:
\buddypress\bp-messages\bp-messages-notifications.phpSo you could use do_action_ref_array hook with a priority < 10 and strip out the recipients.
Or you could try a remove_action on
add_action( 'messages_message_sent', 'messages_notification_new_message', 10 );September 3, 2014 at 9:13 am #189025rzelnik
ParticipantI can confirm that I have the same issue. Admin users can see all groups, including the hidden groups, but the hidden groups are invisible for regular members in the BP Groups Widget.
Here is one relevant issue: https://buddypress.org/support/topic/showing-buddypress-hidden-group-forums-to-group-members-on-bbpress-forum-index/
September 2, 2014 at 11:13 pm #189013In reply to: PM messaging and @mention predictions
shanebp
Moderator>regular topic reply
You mean a forum reply? That, and quotes, would be a question for bbPress.
September 2, 2014 at 10:09 am #188907In reply to: Example sites
peter-hamilton
ParticipantBBPress is great, you can make it just like any other forum, just needs a bit more time invested.
Right now I am working on a BuddyPress forum/theme you can have a look at: BBFacelook
August 31, 2014 at 10:06 pm #188840pooledge
ParticipantAfter some research found this: https://bbpress.org/forums/topic/topic-id-instead-of-slugs/
Looks like a temporary solution with zero-cyrillic-usageAugust 31, 2014 at 9:45 pm #188838pooledge
ParticipantThank you Denis! Let me confirm this issue with better explanation in English.
If bbPress forum slugs are in cyrillic, following is happening while replying on some topic:
Let’s say I have set “тема” instead of “topic” and my new topic’s title is “Тема на русском” (“Topic in russian”). This topic’s url looks like http://www.myawsomenewforum.ru/тема/тема-на-русском/ and shows up just fine. Now let’s post a reply.
After hitting the “Reply” button an answer hash is being added just for a moment, following by redirect to the topic URL but already without “тема” in it. It gets stuck with a redirect loop on http://www.myawsomenewforum.ru//тема-на-русском/
After manual reload http://www.myawsomenewforum.ru/тема/тема-на-русском/ shows the answer on its place.
Thank you.
2Denis: поменять на английский можно, но ведь темы генерируются на русском, да еще и обрезаются до 40 символов. Винегрет, а есть другой способ?
August 28, 2014 at 9:13 am #188628danbp
ParticipantFive minutes before he died, he was alive ! That’s life, my dear: nothing is never changing.
I would suggest to deactivate bp-custom if you use this file, and any custom functions.php and activate 2014. Then deactivate all plugins except BP and test the avatars output everywhere.
Than you reactivate bbPress and check again.Regarding the notice, you have a plugin called twice or a template file who sends a second header.
August 28, 2014 at 8:35 am #188623DarkPsy
ParticipantHello Dan,
I’m using it in the exact same way I was a week back when everything was working just as expected, suddenly it stopped working.
I also have this message being displayed
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in ~wordressdir~/wp-includes/functions.php on line 3245 Warning: Cannot modify header information - headers already sent by (output started at ~wordressdir~/wp-includes/functions.php:3245) in ~wordressdir~/wp-includes/pluggable.php on line 1121The bbPress plugin isn’t something I feel this is related to. Basically I’m baffled cos it was working a week back and now it’s not. everything is the same way. Even on a clean install it backfires.
Buddypress 2.0.2.
WP 3.9.2August 28, 2014 at 8:02 am #188617danbp
Participantis there a better way to do it?
If you expect some help, you have to tell what you already did on the way you mention.
As you built your own theme, you perhaps use this function outside of the bbPress scope ?
What does it give by using get_avatar() ?Do you read this bbPress codex page ?
Maybe better you ask on bbPress forum – remember although bbPress is a standalone plugin, integrated with buddyPress.
August 27, 2014 at 2:41 pm #188558In reply to: [Resolved] Add a button to all topics
danbp
ParticipantBuddyPress works together with the bbPress plugin when you use a forum.
If you want to add an extra button or a link or whatever, you simply check for the hook you want to use in one of the bbPress template files (bbpress/templates/default/bbpress/…) and attach a custom function to it.
As example of use, this snippet will add some text above the topic editor. You add it into your child theme functions.php or into bp-custom.php
function my_test_insert() { echo '<strong>My awesome <a href="#">link</a> to third party app</strong>'; } add_action( 'bbp_template_notices', 'my_test_insert' );If you don’t understand what’s going on on this topic, here’s a brief tutorial about hooks and filters.
August 21, 2014 at 4:48 pm #187718Topic: Activity feature
in forum How-to & Troubleshootingitisix
ParticipantHi,
I love the activity feature I get when I’m logged as admin. In my CP I just click the icon and get a list of posts, replies and who registers in neat order.
My users can’t get this, nor can they get decent info from the activity option from the drop down top menu… or can they?
Latests versions of WordPress, BBpress and Buddypress.
Thanks,
August 21, 2014 at 2:08 pm #187694In reply to: Password Protect Forum with Single Password
danbp
ParticipantHi @hcthomas,
if you already can’t edit your htaccess, how would handle an htpasswd file ?
Please indicate hostname and hostplan.
Can use FTP on your site or are you obligated to manage exclusively your site throught your host’s cPanel ?Also ask on the bbPress forum, which is better indicated to answer forum related questions.
August 20, 2014 at 11:33 pm #187635In reply to: strong passwords
danbp
Participantbp_core_general_settings_before_submit is not a function but an action hook.
@cwjordan, maybe interesting things to find
Line 43: http://phpxref.ftwr.co.uk/buddypress/nav.html?bp-core/bp-core-settings.php.source.htmlA bbpress half soluce :
For inspiration ? This old BP plugin…
https://wordpress.org/plugins/bp-xtra-signup/
More recent
https://wordpress.org/plugins/login-security-solution/ (maybe not compatible with BP)If not affraid of expirimentation:
https://github.com/mgmartel/BuddyPress-Password-Strength-Meter/blob/master/bp-password-strength-meter.phpFor the fun, on @imath ‘s blog (in french), some code to study (php is in english)
August 20, 2014 at 4:13 pm #187262In reply to: widget for displaying forum posts?
heatherkirk
ParticipantActually, I have buddypress installed, rather than bbpress :-). I had a look for buddypress associated widgets, but did not find what I was looking for.
August 20, 2014 at 12:49 pm #187250In reply to: widget for displaying forum posts?
wp_maybe
ParticipantI am assuming that you have bbpress installed on your wordpress. There are some bbpress widgets available for this purpose. Appearance>Widgets – look for those starting with (bbpress)
August 17, 2014 at 9:20 pm #187091In reply to: Changing Group from "Private" to "Public"
Stephen Edgar
ModeratorbbPress side of things https://bbpress.trac.wordpress.org/ticket/2599
The workaround (for now until fixed) would be to verify the bbPress forum visibility and then to also run the bbPress repair tool “Recalculate private and hidden forums” to ensure meta data integrity.
August 14, 2014 at 5:48 pm #186928In reply to: Simple Way to Enable Image posting in Forums
shanebp
ModeratorBuddyPress uses the bbPress plugin for forums.
So you’re better off asking the question on https://bbpress.org/forums/What you want may be possible, to start, see:
August 13, 2014 at 4:44 pm #186532In reply to: Hide Group Forums on /Forums page
danbp
ParticipantHi @alainafrederick,
if you use bbpress shortcode
[bbp-forum-index]for this page: http://jeepedin.com/forums/replace it with this one
[ bbp-single-forum id=$forum_id=4]
and add as many shortcode of this type for each forum you want to show on the forum index.For ex:
[ bbp-single-forum id=$forum_id=4] [ bbp-single-forum id=$forum_id=5] [ bbp-single-forum id=$forum_id=7] [ bbp-single-forum id=$forum_id=11]forum-index fetches ALL forums, single-forum fetches only the forum you indicate by his ID.
August 13, 2014 at 12:00 am #186502milosnikolic
ParticipantYes I thought so but one of the first things I tried is to disable all plugins except Buddypress and it was still happening. I tried it again now – bbpress error is for something else it seems, as users still get marked for spam even when it’s disabled.
August 12, 2014 at 11:54 pm #186500shanebp
ModeratorThose notices are about bbpress, not buddypress.
Try asking on the bbpress support forums.August 12, 2014 at 11:52 pm #186498milosnikolic
ParticipantOk I cleared the log so only new errors show up, and after switching to 2013 theme I don’t get any errors in but it still doesn’t work, user activity isn’t showing up, their profile is empty with no activity and they cant post in bbpress forums (“You cannot create new topics” message – they have correct Participant rank).
August 12, 2014 at 11:37 pm #186494milosnikolic
ParticipantYes it was a typo, I meant “is_spam”. Yes I tried switching and the same thing is happening, it’s not for all users, but most have the problem. When I mark for spam/unmark in the users list their old activity shows up (when they were marked for spam, and it’s reset to 0 in the table), but as soon as they log in and try to post it goes back to marking their activity as 1 in is_spam column, and not showing anything (and not giving them access to bbpress forum also).
August 12, 2014 at 10:46 pm #186490milosnikolic
ParticipantIn phperrorlog I get this error:
WordPress database error Unknown column ‘spam’ in ‘where clause’ for query SELECT ID FROM lb_users WHERE ID=1 AND spam != 1 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), include(‘/themes/Cinematix/bbpress.php’), get_sidebar, locate_template, load_template, require_once(‘/themes/Cinematix/sidebar.php’), dynamic_sidebar, call_user_func_array, WP_Widget->display_callback
August 12, 2014 at 8:55 am #186466In reply to: Can't see bbPress in activity streams
rossob
ParticipantThanks for your reply mrjarbenne. Posts have started appearing in my activity stream as normal now. I think this issue fixed itself after I ran the “repair forum data” tool from WP admin. I ran that to fix a completely separate issue (bad counts after deleting posts), but it seems to have fixed my issue that stopped forum posts appearing as activity.
There must be a bug in bbPress here, so might be worth the developers looking into if any of them see this. If there’s any more detail I could give to help to that end let me know.
-
AuthorSearch Results