Search Results for 'bbpress'
-
AuthorSearch Results
-
August 12, 2014 at 2:22 am #186456
In reply to: Can't see bbPress in activity streams
mrjarbenne
ParticipantSimple answer: Yes, bbPress should be appearing in your activity feed. In mine, both the forum from the main domain and forums from Public Groups create an activity entry (You can enable Group Forums in Settings/Forums)
“username” replied to the topic “forum topic name” in the forum “Forum Name” 3 months, 4 weeks ago
Sorry I can’t offer more assistance as to why this isn’t working for you. In my install, on the Activity Feed, there are separate filters in the dropdown for Topics and Replies to filter and locate bbpress content on the activity feed. It’s fully integrated out-of-the-box for me.
August 11, 2014 at 10:05 am #186410In reply to: Can't see bbPress in activity streams
rossob
ParticipantAny ideas? The most basic question I’m trying to answer is *should* bbPress posts and replies appear within the Activity Stream by default?
August 9, 2014 at 9:51 pm #186376In reply to: Profanity Filter! Any suggestions?
geistschatten
ParticipantSo I got it to work when I put this after line 287:
add_filter('bp_get_activity_action', 'pccf_filter'); add_filter('bp_get_activity_content_body', 'pccf_filter'); add_filter('bp_get_the_topic_title', 'pccf_filter'); add_filter('bp_get_the_topic_post_content', 'pccf_filter'); add_filter('bp_activity_comment_content', 'pccf_filter');I’m not really one for PHP though, so I’m not sure if that works entirely fine. I was able to filter the comments with that code too.
Basically you’re adding it to the plugin filters so that it thinks it should also filter through the comments and activity.
For further reference, line 284 should start like this and then end where it says “//bbPress specific filtering…” (make sure the apostrophes are showing up right, if you copy and paste code sometimes they get messed up but look the same, that’s why the comments weren’t happening before):
if ( isset( $tmp['chk_post_content'] ) ) { if ( $tmp['chk_post_content'] == '1' ) { add_filter( 'the_content', 'pccf_filter' ); add_filter( 'get_the_excerpt', 'pccf_filter' ); add_filter('bp_get_activity_action', 'pccf_filter'); add_filter('bp_get_activity_content_body', 'pccf_filter'); add_filter('bp_get_the_topic_title', 'pccf_filter'); add_filter('bp_get_the_topic_post_content', 'pccf_filter'); add_filter('bp_activity_comment_content', 'pccf_filter'); }August 9, 2014 at 1:45 pm #186358In reply to: Create link to friends activity?
wp_maybe
ParticipantI read another solution here
1. Install and activate this plugin https://wordpress.org/plugins/wp-exec-php/
2. Create a new page called “Friends” or whatever name you want and add it to your menu.
3. In content of this page, add this code
<meta http-equiv=”refresh” content=”0;URL=http://blabla.com/members/<?php global $current_user;
get_currentuserinfo();echo sanitize_file_name($current_user->user_login). “”;
?>/activity/friends/”>
4. You may still need a way to hide this menu from logged out users. Plugin https://wordpress.org/plugins/if-menu/
August 8, 2014 at 11:48 am #186287In reply to: Attach drawings or doodles: is it possible?
danbp
Participanthi @carlenb,
there is no buddypress forum. BuddyPress use the bbPress forum plugin, and once it is installed you can opt for a global forum or a group forum or both.
worddraw is outdated.
drawblog mentionned in the topic you linked is for wp comments and according to support doesn’t work with ios.Perhaps try this one: https://wordpress.org/plugins/deviantart-muro/
August 7, 2014 at 3:44 pm #186102In reply to: [Resolved] Can't see member profile (Not found)
spikespiegel
Participantbbpress Version 2.5.4
Buddypress Version 2.0.2August 7, 2014 at 12:00 pm #186087In reply to: [Resolved] Can't see member profile (Not found)
Paul Wong-Gibbs
KeymasterAs you can read, some of those aren’t related to BuddyPress. What versions of BuddyPress, bbPress, and WordPress are you using?
August 7, 2014 at 12:38 am #186063In reply to: [Resolved] Cannot create register and activate tab
danbp
ParticipantSorry, my english is a bit french! 😉 Is this really unclear:
So you have nothing other to do as to create them from the settings page.And you have nothing to activate in the menu.
The log-in option in the menu exist if you prefer to get on the menu bar instead of a sidebar, throught the login widget.By default there is a login widgt in wordpres, another one in buddypress and if you use bbpress you get a third. But there is no need to use and activate all.
For the naming, you can use what you want, but be aware that naming vocabulary can easily conflict with coding language such as php. And log in (or loggin, log-in,….) is one of these dangereous word. Avoid !
August 5, 2014 at 11:29 am #185958In reply to: Ok Im Completely Lost Need Help Please
shanebp
ModeratorAugust 4, 2014 at 11:45 am #185919Nelinfo
ParticipantGood day!
Replaced bbpress links to Cyrillic.
As a result, when you add a post has received a page with a redirect (see picture). When you refresh the page posts are added.
It turns out the problem was not in the server, and not in the subject, and in the plugin bbpress.
It does not support Cyrillic (!!!) (links are empty), and incorrectly generated link to the start of the topic.
In the settings bbpress had to change all references to the Latin fonts back (before I translated them in Cyrillic, so it was nice and clear for the user, because I’m in Russia).The result: everything works and no redirect, throws on the right.
Developer bbpress: please note this problem, need to adjust the plug-in.
Sincerely,
DenisДобрый день!
Сменил ссылки bbpress на кириллицу.
В итоге при добавлении поста получил страницу с редиректом (смотрите картинку). При обновлении страницы посты добавляются.
Оказывается проблема была не в сервере, и не в теме, а в плагине bbpress.
Он не поддерживает кириллицу (!!!) (ссылки становятся пустыми), а также неправильно генерируется ссылка на созданную тему.
В настройках bbpress пришлось менять все ссылки на латинницу обратно (до этого я их переводил в кириллицу, чтоб было красиво и понятно для пользователя, ведь я в России).В итоге: всё работает и редиректа нет, перекидывает на тему правильно.
Для разработчиков bbpress: просьба учесть данную проблему, необходима корректировка плагина.
С уважением,
ДенисAugust 4, 2014 at 11:21 am #185918In reply to: Bb-config-location
Paul Wong-Gibbs
KeymasterYep, I know what you’re referring to. It’s a legacy option that’s only important if you’ve the Groups and Forums components enabled, and if you use bbPress 1.
Note that if you’re using the plugin version of bbPress, you’ll be on version 2.x of bbPress, and so this won’t apply to you.
July 31, 2014 at 5:20 pm #185792In reply to: Is buddy press adequate for my community?
@mercime
Participant@ancavreasy really depends on the scale your company is willing to engage with the customers.
If you only need forums, you do not need BuddyPress, just install bbPress plugin. For a more engaged community interaction via groups, friending, profiles, etc, then BuddyPress is your plugin.
e.g. of BP in action with some customizations
university – http://www.bpinspire.com/cuny-academic-commons/
newspaper – https://wordpress.org/showcase/my-telegraph/July 31, 2014 at 4:36 pm #185790In reply to: [Resolved] Translation.
bp-help
Participant@noyzen
Have you tried this plugin that supposed to translate WP/BP/bbPress to Persian? Link below:
https://wordpress.org/plugins/persian-world/July 29, 2014 at 9:40 pm #185728In reply to: [Resolved] Enabling Forum
@mercime
Participant@cregy you need to install bbPress forums plugin then follow instructions https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/
July 28, 2014 at 4:54 pm #185675In reply to: adding photos to forum posts
danbp
ParticipantIt’s a bbpress question ! 😉
And it’s a bad idea, because users will have acces to your media library on the backend. So i warn you to use this option very carefully and allow only trusted users.You can use this plugin: https://wordpress.org/plugins/gd-bbpress-attachments/
or code yourself by following this example.July 25, 2014 at 6:32 pm #185572In reply to: Create custom notifications
shanebp
ModeratorThe bbpress example is a good one.
But just fyi – the BuddyPress codex page is here: bp_notifications_add_notification page.
July 25, 2014 at 5:29 pm #185569In reply to: Create custom notifications
nicmare
Participantdid you read this example in the documentation? https://bbpress.trac.wordpress.org/browser/tags/2.5.3/includes/extend/buddypress/notifications.php
there is a function for that: bp_notifications_add_notification( $args )
July 24, 2014 at 3:54 am #185491In reply to: [Resolved] Profile pages / setting pages 404
@mercime
ParticipantFor my subdirectory I created the /community page
@swoopswoop Just to clarify, creating a new page titled “Community” and adding the BP component links under that does not a subdirectory make 🙂 i.e., if you did not create a multisite installation nor create a physical subdirectory, then BuddyPress is installed at the root of your WP installation. By the same token, bbPress is also installed in the same way.Re-run permalinks settings again via admin menu Settings > Permalinks choosing option other than default to remove 404.
July 23, 2014 at 12:54 pm #185461In reply to: [Resolved] Profile pages / setting pages 404
SwoopSwoop
Participant@mercime I’m trying to keep it within the same theme of the rest of the website, so I just want it to be in a subdirectory folder. I initially thought the problem was I needed a multisite, but then I would need to install a new theme and have new settings right?
For my subdirectory I created the /community page and I just wanted the buddypress and bbpress plugin to consider this the home page. Then everything else would be created underneath it, like /community/members, /community/forums/forum etc. It’s a business website so I need product pages off the root, keeping the forum contained to one portion of the site.
July 23, 2014 at 12:45 pm #185460In reply to: [Resolved] Profile pages / setting pages 404
@mercime
ParticipantI’m trying to install buddypress and BBpress into a subdirectory of my website
@swoopswoop To clarify, do you mean a physical subdirectory, i.e., you created a subdirectory folder, or do you mean a secondary site of a WP multisite installation with subdirectory structure?July 23, 2014 at 8:00 am #185448In reply to: How do I delete a forum within my bbpress?
@mercime
ParticipantJuly 22, 2014 at 3:47 pm #185421David Cavins
KeymasterI still haven’t solved this. It looks like it’s not just me though. It’s also true that if you insert short codes in bbPress topic content then edit that content, the short codes are interpreted in the editor input box.
Does anyone have any ideas how I could make some headway on this problem? Thanks!
July 21, 2014 at 11:59 pm #185389@mercime
Participant@louisedade do also post at the bbPress forums https://bbpress.org/forums/
July 21, 2014 at 5:39 pm #185369In reply to: members pages not showing
rukiax
ParticipantHiya, I just did all that, deactivate all plugins and started again, using BP 2.0.1, then turned on bbpress 2.5.4, the perma links are set, I have no idea why it’s still not working, and I have the twentyfourteen theme active
July 21, 2014 at 12:27 pm #185351In reply to: [Resolved] Enabling Forum
danbp
Participant -
AuthorSearch Results