Search Results for 'bbpress'
-
AuthorSearch Results
-
August 13, 2015 at 9:07 am #243118
In reply to: Profile Pic upload failure
danbp
ParticipantI was running WP and BBPress… and user where handled as forum user by bbPress. Now you use BP and bbpress aside.
Deactivate bbpress and make sure you have only one member page (and no one in trash too). Sync BP profiles with WP – all this can be done in BP settings. Check that all is working correctly, then reactivate bbPress.Now if it still doesn’t work, sorry for you, but there is no result without effort. You have an issue and we’re trying to debug it.
I presume you have no local install where you could test previously from prod site ?
Keep Twenty Twelve active and deactivate all plugins, as the issue may come from a js conflict which we have to isolate at first.
If you use some mu-plugin or custom functions in bp-custom.php, think to remove them temporary.
August 13, 2015 at 12:19 am #243104In reply to: Profile Pic upload failure
AdventureRidingNZ
ParticipantThanks for that. I’ve tried it under Twenty Twelve with the same result but not with all other plugins deactivated yet as there’s a lot of them.
The profile path just happened like that when I installed BuddyPress. I was running WP and BBPress for a while and the members URL was /members/username. When I installed BuddyPress later it changed to /members/members-2/username as part of the BP install. I didn’t actively do anything to make it like that and thought that much have been standard.
August 12, 2015 at 10:48 am #243078atfpodcast
ParticipantIm using raindrops. I seen the other themes jazz the profile look. I also noticed it changed the link in bbpress to the profile not the forum dashboard. Im not good with php so if i can copy and past that helps
August 10, 2015 at 8:12 pm #242986In reply to: documentation for remove_action activity streams
Shaktimaan
ParticipantThanks @danbp
It works. I am also using bbpress. I found these activity types created by bbpress in DB and added them to code given by you.
bbp_topic_create bbp_reply_createdanbp
As mentioned by you also it may be confusing for some users and may cause problems in some situations , if someone is using a plugin like rtMedia that also creates activities.
Can you share a code that will let us just remove unwanted activity type?
August 10, 2015 at 4:47 pm #242974In reply to: documentation for remove_action activity streams
danbp
Participanti wouldn’t remove the whole action hook, as other functionnalities from other plugins, can use it. Filtering is even better.
bp_parse_{component}_argsis intended to filter template loops.If you remove an {activity} type with this function, it will remove that activity from each activity feed (swa, profile and group). Something like an all or nothing thing.
bp_parse return values. So if you want to remove something, you have to list what you want to keep to show, and not what to remove !
Here a snippet, listing all existing BP activity types (2.2.x). Simply comment or remove the type you don’t want.
function my_bp_activity_types( $retval ) { // list of all BP activity types - remove or comment those you won't show. $retval['action'] = array( 'activity_comment', 'activity_update', 'created_group', 'friendship_created', 'joined_group', 'last_activity', 'new_avatar', 'new_blog_comment', 'new_blog_post', 'new_member', 'updated_profile' ); return $retval; } add_filter( 'bp_after_has_activities_parse_args', 'my_bp_activity_types' );IMPORTANT: copy/paste to bp-custom.php or child-theme functions.php. Used as-is will do nothing ! You have to remove the type you don’t want from the list….
Third party plugins (like bbPress) use also activity types. Easiest way to get the right type name is to check xxxx_bp_activity table in DB and search for it in the Type column.
@umar007, removingfriendship_createdwill solve your question.
@djsteveb, removenew_avatar! ๐August 8, 2015 at 6:10 am #242900In reply to: 404 error on topic pages
djsteveb
Participant@labsupplyorg –
Topics? You mean like bbpress forums topics? What do you mean exactly by “topic pages”?I would..
check your permanlinks perhaps? go there, note what they are.. change them to something else.. save.. then change back.. save again..
May not be related, but on one of my sites this similar issue crops up every other time I update rtmedia plugin for some reason.Does this happen if you disable other plugins?
Does this happen with the default twenty-fifteen or 2014 theme?August 1, 2015 at 1:37 pm #242674In reply to: I want to add Spanish!
danbp
ParticipantThe main site language should be set to spanish first.
See in WP dashboard > Stettings > GeneralNormally, this settings allows automatic translation file upload of BuddyPress and bbPress (if installed).
If not, you can add manually the language files in the wp-content/languages/plugins/ folder to get:wp-content/languages/plugins/buddypress-es_ES.mo
wp-content/languages/plugins/buddypress-es_ES.poEach version of BP comes also with its own translatable strings file, which is at the BP plugin root.
wp-content/plugins/buddypress/buddypress.potJuly 30, 2015 at 12:32 am #242556In reply to: New user login info and forum display
danbp
Participant1) depends which type of forum you use (standalone or group forum)
https://wordpress.org/plugins/bp-registration-options/
https://wordpress.org/plugins/bbpressmoderation/2) see here how to do that
https://buddypress.org/support/topic/add-dynamic-menu-link/#post-2424873) i’m not aware of such feature for BP
July 29, 2015 at 7:01 pm #242542In reply to: Cannot invite members to group
danbp
Participant@bigswp,
if you have the same config today as @enaijo 5 months ago, update first.
Actually: WordPress 4.2.3 BuddyPress 2.3.2.1 and bbPress 2.5.8-5815If the issue is still in, ensure that you have some friendship, as you can only invite friends to join a group.
If all this is ok, you can open a ticket.
Give details about your config and any hint about how to reproduce your issue and mention this topic.Login to Trac uses same credentials as here.
https://buddypress.trac.wordpress.org/reportJuly 29, 2015 at 5:15 pm #242537In reply to: How Do I Display A Custom Profile Field?
kjgbriggs
ParticipantSorry for not responding for a little while.
Where do I put this and how do I make sure it doesn’t get removed when I update BuddyPress or BBPress?
July 26, 2015 at 4:42 pm #242440In reply to: Using a theme just for BuddyPress
kjgbriggs
Participantchecking the Functions file, there is a huge amount of php requirements specified at the top (13 of them), I am guessing this will mess with me trying to make a child theme out of it.
On a lighter note.
The CSS files are included separately so I have the styles for BBPress and BuddyPress separated out for me.I have tried adding these to my custom CSS, but they don’t seem to change that much, just the overall placement of things.
July 26, 2015 at 1:34 pm #242436In reply to: Using a theme just for BuddyPress
djsteveb
Participant@kjgbriggs – just took a look at your oblivion thing you like – it appears to be the forums layout you are concerned with here – which may end up being more of a “bbpress” theme-ing issue – not so much buddypress… last I checked you can add “bbpress” as an auto-addon for buddypress – but if it’s not profiles and activity stream stuff – you may need to look up some “bbpress” specific theme things if you run into issues – not sure if they go over all that at bbpress dot org these days or not.. I have not checked those forums / docs in years.
July 26, 2015 at 10:56 am #242427In reply to: Using a theme just for BuddyPress
kjgbriggs
ParticipantSorry for not providing enough info.
My main theme is called Divi and is created by Elegant Themes.
The theme I want to use just for BuddyPress stuff is called Oblivion and is created by Sky Warrior Themes.An example of the BuddyPress forums nd layouts is here on the Oblivion demo:
http://skywarriorthemes.com/oblivion/forums/
I just want the styling for the BuddyPress and BBPress stuff from Oblivion in Divi.
I did a bit of Googling and came to the conclusion that the best way to do this was to use a Child Theme.
Divi is updated quite a lot so I would either have to not update anymore or lose the styling if I were to add the styles to Divi directly.
There is little information I can find on having a child theme for specific things such as buddyPress though and I am unsure of how to do it.
July 24, 2015 at 6:22 pm #242211In reply to: Cannot Log Back In To My WP Dashboard?
jrunfitpro
ParticipantMust be some conflict with another plugin. My theme is Optimize Press 2 and that could be it. BBpress definitely overwrote my permalinks (used to be the custom post structure) and it flipped to subject after bbpress installation.
July 24, 2015 at 7:09 am #242197In reply to: Cannot Log Back In To My WP Dashboard?
@mercime
Participant@jrunfitpro What do you mean by “removing bbPress”? Deactivating/deleting bbPress from Plugins page doesn’t cause any issue per check in my local installation. WP/BP/bbPress versions?
July 23, 2015 at 3:28 pm #242165jrunfitpro
ParticipantThanks. I’m really not sure what bbPress is for? It just prompted me to add it to get the forum pages to show.
July 22, 2015 at 10:33 am #242120In reply to: activate Sidebar for all-members and all-groups page
Whiskyharry
Participantoh sorry:
I’m using the7.2 from themeforrest.They’ve sent me some snippets to include in the themes functions.php, but I don’t know if I’ve included them correctly. But after including them, I had the sidebar on several pages (e.g. the member-subpages), but still missing on
- all groups
- single group
- members list (first page)
- group list (first page)
- activity list (first page)
They said it was a kind of “blueprint”, so I added the lines – without really understanding what I’m doing. As a result, it seems to work on some pages – but not on all:
function dt_bbypress_template_config1()
{
if( is_bbpress() )
{
$pagid = 35615; //sidebar, footer settings of the page id given will be applied to user profiles
$config = presscore_get_config( );
presscore_config_base_init( $pagid );}
}
add_action( ‘get_header’, ‘dt_bbypress_template_config1’, 10 );function dt_buddypress_template_config2()
{
if( bbp_is_single_user() ){
$pagid = 35615; //sidebar, footer settings of the page id given will be applied to user profiles
$config = presscore_get_config( );
presscore_config_base_init( $pagid );
}
}add_action( ‘get_header’, ‘dt_buddypress_template_config2’, 10 );
function dt_bbypress_template_config3()
{
if( is_bbpress() )
{
$pagid = 35609; //sidebar, footer settings of the page id given will be applied to user profiles
$config = presscore_get_config( );
presscore_config_base_init( $pagid );}
}
add_action( ‘get_header’, ‘dt_bbypress_template_config3’, 10 );function dt_buddypress_template_config4()
{
if( bbp_is_single_user() ){
$pagid = 35609; //sidebar, footer settings of the page id given will be applied to user profiles
$config = presscore_get_config( );
presscore_config_base_init( $pagid );
}
}add_action( ‘get_header’, ‘dt_buddypress_template_config4’, 10 );
July 22, 2015 at 4:13 am #242112In reply to: Restrict by role
djsteveb
Participant@lorenzoto – take a look at s2member plugin and or maybe the “press permit core” – both in the wp repo – they may do what you are describing – have not tested with bbpress stuff yet – so not 100% sure, but think I saw something in both of them for bb stuff.
I am sure there are other similar options out there as well.
July 20, 2015 at 9:06 pm #242055In reply to: Discussion Forums (bbpress) no longer an option?
Henry Wright
ModeratorbbPress is a separate plugin. You’d need to install that as well as BuddyPress.
July 19, 2015 at 4:58 pm #241999shanebp
ModeratorCheck your site-wide settings, in wp-admin, for Forums.
btw: this is the BuddyPress support forum.
July 17, 2015 at 8:39 am #241938In reply to: Group Restriction Pages/posts
xxcoincoinxx
ParticipantHi, I find out how to do it for Bbpress, but I still don’t find out how I can restrict access to a “normal Page” =(
July 15, 2015 at 3:54 pm #241869In reply to: theoretically, is it possible to do this?
peter-hamilton
Participantsorry, password is: demouser
I hope it shows a bit more then just a bbpress forum thats added,
Took me a long time to add the custom functions, especially the profile pages and activity.July 15, 2015 at 12:15 pm #241868In reply to: Group Restriction Pages/posts
xxcoincoinxx
ParticipantBTW, I would also have the possibility to do the same for Forums in bbpress ๐
July 13, 2015 at 4:39 pm #241813In reply to: location of selectbox
@mercime
Participant@felipexx85 You’d need to go to your site’s Activity directory page e.g. http://example.com/activity
The content of the selectbox will depend on what components you have activated and plugin you have installed. For example, Topics and Replies only show up in the selectbox if bbPress plugin is activated.July 12, 2015 at 2:31 pm #241775In reply to: theoretically, is it possible to do this?
djsteveb
Participant@thatmtnman – sounds to me that you just have not played with a few different themes and changing some widgets – that would do about everything you are saying from what I gather. Should be pretty easy to come up with what you are talking about with just some basic theme modifications – a little css color changes and different widgets in the sidebars.
“dying to see how you did it” – I think the site you are talking about just added a bbpress forums plugin and added some topics to the sidebar.
“BP might not be able to handle a high traffic siteโฆ” – handles a small site on a shared server fine – handles a site with 10,000 members on a dedicated server just fine (even sharing that dedicated with a dozen other wp and wp-multisite and bunch of other fair traffic sites – so I don’t think that would be an issue.
-
AuthorSearch Results