Search Results for 'buddypress'
-
AuthorSearch Results
-
November 22, 2014 at 12:47 pm #229445
In reply to: Administrator / Keymaster and other role problems
shanebp
ModeratorYes, it’s unfortunate that bbPress doesn’t clean up the roles it created when uninstalled.
( note: it shouldn’t remove roles when it’s just deactivated. )But this is the BuddyPress forum.
Please ask your question on the bbPress forum.danbp
ParticipantRead here:
https://make.wordpress.org/polyglots/handbook/and this discussion:
https://buddypress.org/support/topic/buddypress-2-1-bp-language/November 21, 2014 at 2:37 pm #229291shanebp
Moderatorfunction remove_xprofile_links() { remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 ); } add_action( 'bp_init', 'remove_xprofile_links' );November 21, 2014 at 2:35 pm #229289In reply to: S2member and Buddypress
shanebp
ModeratorYou’ll need to write some custom code.
It is more complicated than a ‘tweak’.
You probably need to hire a developer.
You can post jobs here.November 20, 2014 at 10:42 pm #229255Hugo Ashmore
ParticipantThat’s bbPress, bbPress isn’t BuddyPress 🙂
bbP handles overloaded styles in same manner BP does so you can copy the stylesheet for bbpress to your theme/child theme and edit the relevant rulesets.
November 20, 2014 at 10:06 pm #229252In reply to: Registration via BuddyPress won't work
Henry Wright
ModeratorIt’s interesting there has been two reports of this happening over the past week. The common ground seems to be localhost (you’re running Xampp and the second reporter is running mamp)
Ref: https://buddypress.org/support/topic/new-users-cant-register-5/
November 20, 2014 at 5:51 pm #229243In reply to: Can I use UserPro plugin ?
November 20, 2014 at 4:43 pm #229239In reply to: How to list extended profile fields
shanebp
ModeratorTake a look at this codex page for an example of gathering user ids based on an xprofile field.
November 20, 2014 at 3:32 pm #229237In reply to: How to list extended profile fields
shanebp
ModeratorThis will require good coding skills. You may need to hire a developer. Or maybe somebody will be willing to create the code for you.
To any devs: BP 2.2 will include ‘BP_XProfile_Query‘ to make these kinds of tasks much easier !!!
November 20, 2014 at 7:51 am #229223In reply to: Buddypress plugin causing problem with other plugin
Hugo Ashmore
ParticipantAt this stage we can’t help as you provide no idea of what sort of issue you are having; this plugin author you contacted replied to you thusly You might want to contact one of the developers of the plugin that is causing the problem and send them the information in your console no information though!
Not sure why you have arrived at the conclusion BuddyPress is the issue here though, BP is coded very tightly to WP standards and is less a plugin and more an extension of WP functionality.
You actually list a number of fairly complex plugins that you consider cause the issue and seem to have posted this question on bbPress forum their response is going to be the same as ours at this stage without much more information, but frankly if one states a number of plugins appear to cause an issue on an individual basis then the one common denominator would likely be the problem and in this case that’s the bol.com plugin, but that’s not pointing the finger so to speak at bol but the resolution will lie with bol rather than bbPress or BuddyPress.
https://wordpress.org/support/topic/produktlink-doesnt-workNovember 19, 2014 at 9:48 pm #229216In reply to: oEmbed in BP Profile Field
Myg0t
Participanthmmm… Your exactly right… Now that you say that, I had it in the plugins folder at one point, but some where along the lines I some how moved it over to the buddypress folder.. Not sure why…
Either way, I moved it back to the plugins folder and still nothin’ 🙁
November 19, 2014 at 9:12 pm #229214In reply to: oEmbed in BP Profile Field
aces
ParticipantI haven’t tried the above code, but the location of bp-custom.php should be /wp-content/plugins/bp-custom.php not the buddypress plugin directory.
November 19, 2014 at 6:58 pm #229209In reply to: [Resolved] Notification – what's wrong here?
Security
ParticipantHi i think i know whats happening here i was working on status theme to make it work with the latest versions of both buddypress and wordpress and i faced the similar issue so this is what i did to resolve it goto wp-content>>themes>>yourthemename>>members folder>>single>>home.php and add these lines of code there
elseif ( bp_is_user_notifications() ) : locate_template( array( 'members/single/notifications.php' ), true );just before this kinda statement // If nothing sticks, load a generic template
next create a file named notifications.php in wp-content>>themes>>yourthemename>>members folder>>single folder and add these lines to it<?php /** * BuddyPress - Users Notifications * * @package BuddyPress * @subpackage bp-legacy */ ?> <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> <ul> <?php bp_get_options_nav(); ?> <li id="forums-order-select" class="last filter"> <?php bp_notifications_sort_order_form(); ?> </li> </ul> </div> <?php switch ( bp_current_action() ) : // Unread case 'unread' : bp_get_template_part( 'members/single/notifications/unread' ); break; // Read case 'read' : bp_get_template_part( 'members/single/notifications/read' ); break; // Any other default : bp_get_template_part( 'members/single/plugins' ); break; endswitch;and try to reload your site now your problem should be solved.
Note: only create notifications.php if its not already there and please backup your site before making these changesNovember 19, 2014 at 6:49 pm #229207In reply to: [INFO] Useful s2member/buddypress knowledge
shanebp
ModeratorRe: 2. Importing s2member custom fields to buddypress fields
Instead of, for now, editing the codex page, please note the args parameter for add_action.So the ‘2’ here is the arguments parameter.
add_action('wp_login','s2_profile_field_update',10,2);
So the hook provides 2 arguments – very handy & useful.
But your example doesn’t use them in the function s2_profile_field_update.
You can use the $user arg instead of$current_userand thereby get rid of that global.
Use this to see the data in $user:function hook_arg_display( $user_login, $user ) { var_dump( $user ); } add_action('wp_login','hook_arg_display',10,2);imo: There is no Option 1.
November 19, 2014 at 6:49 pm #229206In reply to: [INFO] Useful s2member/buddypress knowledge
shanebp
ModeratorRe: Filter Users Displayed in Members Directory by s2member role.
There a couple of ways that this can be accomplished without needing to overload the members loop template and then hack it. One of them is bp_parse_args. Please try using it.The goal of this new codex page is to provide simple functions that adhere to best practices for WP and BP, that users can easily paste into bp-custom.php or theme/functions.php.
Thanks for creating the page – looking forward to your updates.
November 19, 2014 at 6:04 pm #229202In reply to: [INFO] Useful s2member/buddypress knowledge
Myg0t
Participant@mcpeanut I’ve posted the material in the codex now, so you may want to bookmark this page instead:
https://codex.buddypress.org/developer/useful_func_s2_bp/
I’ve already posted the option2 for the field import function. Once I get some more time and figure out how to use bp_parse_args() i’ll update the first section as well. Along with any other usefull s2member/buddypress tweaks that I find along the way.
Glad you could find this useful!
what’s the trick to formatting code in the codex? I’ve wrapped all the code in the
tags, but it rips apart the formatting for the text (like indention’s)\M
November 19, 2014 at 5:59 pm #229201In reply to: oEmbed in BP Profile Field
Myg0t
Participant@naijaping Sadly, it is not working still 🙁
I tried the code in both childtheme/functions.php and plugins/buddypress/bp-custom.php…
Just to clarify I should be using a link like this, yes?
thanks guys,
\M
November 19, 2014 at 10:59 am #229189In reply to: [INFO] Useful s2member/buddypress knowledge
mcpeanut
Participant@hnla cheers for that, it will be a few weeks i think before i integrate s2members anyhows, i am currently finishing off the overall design of my theme and customizing every aspect of it and integrating alot of css changes to the way buddypress looks, so i will bookmark this page and refare back to it when i get round to s2member, i have learned so much over the past year and a half by visiting this site thx to you guys so cheers 🙂
November 19, 2014 at 12:55 am #229183In reply to: oEmbed in BP Profile Field
Myg0t
Participant@henrywright Thanks for the reply!
unfortunately, that did not work.
I tried putting it in both my childtheme/functions.php and my plugins/buddypress/bp-custom.php and no dice. :\
November 18, 2014 at 5:51 pm #229173izzyian
ParticipantYep ok ill ask there but hopefully there is a function for this so I can go around core files. is the activity stream also done by them or is this question in the right spot to : https://buddypress.org/support/topic/how-to-change-the-number-of-activity-items-on-a-profile-page/ ?
-Thank you
November 18, 2014 at 8:50 am #229144In reply to: [INFO] Useful s2member/buddypress knowledge
Hugo Ashmore
Participant@myg0t Thanks for sharing that with the community, S2 Member has wide use so this ought to be useful to people.
One point though it’s best not to advise that people edit a core file /buddypress/bp-templates/bp-legacy/..etc BP has a fairly well defined template hierarchy overload allowing files to be copied to the theme or child theme, those are the copies one should edit.
Another minor point rather than have to edit & pass the arguments in the template could bp_parse_args() perhaps work for this?
Using bp_parse_args() to filter BuddyPress template loopsIn respect of the profile data would not setting the user visibility options on the profile field/s in the backend not work to provide the privacy for address fields, just a thought but I may have missed the point of this aspect.
Lastly this could make a nice user example guide for the BP codex if you’d care to post it there and we’ll slot it under a section appropriate.
November 17, 2014 at 7:44 pm #229134In reply to: buddypress rtl
Henry Wright
ModeratorHi @zemenik
Have you tried searching the WordPress Themes Directory? Perhaps search for something like “rtl language support” or just “rtl” and look through the results retuned for themes that are compatible with BuddyPress.
November 17, 2014 at 2:21 pm #229124In reply to: groups added to phpbb?
shanebp
ModeratorIntegrating phpbb with BuddyPress would be a lot of work and would require a good developer with strong knowledge of both BP and phpbb.
I’m not aware of any plugin that bridges phpBB with WP and BuddyPress.
November 17, 2014 at 1:53 pm #229123In reply to: Error when assigning a menu
Hugo Ashmore
ParticipantWhat was the outcome when you swapped to a standard WP theme such as twentyfourteen?
Does your install work work period in regards BP, not sure about that rather non standard server path where you have plugins under /themes/x/framework/functions/plugins/buddypress.php – to my mind that should not be working.
November 17, 2014 at 8:40 am #229119In reply to: remove user role display
Gatera
ParticipantHi @modemlooper,
Actually I realised that is not what is causing the user to be displayed. I deleted everything and started from 0, it is still showing. I am running buddypress 2.0.1 with the X theme.
please take a look at the picture in the top left corner is where you will find the problem
-
AuthorSearch Results