Such a plugin doesn’t exist, sorry. Customizing (eg. insert css) starts here:
https://codex.wordpress.org/Child_Themes
Best place to get advice about your theme is here:
https://wordpress.org/support/theme/fashionistas
The file containing layout information is (your theme)/style.css
hi.
i am using SocialChef Theme.
i checked signup page, befor the last update of buddypress, and it was working fine.
i haven’t checked it since then, until now.
it’s not working anymore. (show me a blank page)
the theme author is saying:
——-
“Hi,
If you are using WordPress only, then the Register page template is “Custom Signup Page”.
If you use WordPress and BuddyPress then you create a Register page using the Default page template and then you link to this page from the BuddyPress configuration screen /wp-admin/admin.php?page=bp-page-settings
Btw, the Login screen (or Register for that matter) will not appear if you are logged in. You have to log out to see them.”
——–
i do have a buddypress folder in my theme, to override some pages.
and in there i do have register page.
but it’s not working.
——–
FYI, i disabled all the plugins, deleted all the extra functions i’ve putted in theme functions and bp-custom,
and reset everything to it’s default.
but not working.
what should i do now?
The function tells gettext() to change a string to another. It use a switch called $original_string. If not explicit enough, this means the original phrase or words you want to modify. You see it near ‘case’. And right of return, you can put your words.
The present example use only one case. But you can add more. (See php switch)
function abcd_gettext( $translated, $original_text, $domain ) {
if ( 'buddypress' !== $domain )
return $translated;
switch ( $original_text ) {
case 'STING YOU WANT TO MODIFY':
return 'MODIFIED STRING';
default:
return $translated;
}
}
add_filter( 'gettext', 'abcd_gettext', 20, 3 );
IMPORTANT
Why to use po/mo if this kind of function can be used ?
– because po/mo is much faster as only loaded once.
– using this function force gettext to recalculate all strings one by one at each string load. Imagine what will happen on your server if you translate all 1970(BP2.6) BP’s string like this!
– this function can be handy only in case you need to change a few words. I wouldn’t use it for more as 10 strings.
– it’s also handy if you already use a mo file, but need temporary a different word/string.
So you’re warned. Best practice to change strings is to use po/mo files. See codex for details.
I am trying to setup a login redirect for users and I can’t get any code to work. I also have BP registration plugin, and I think something is overriding all the code I put into my functions.php file. I even installed Peter’s Login Redirect and set login/logout redirects on my username, and only the logout one worked. Does anyone have any idea why that might be?
You have to debug and for this, use a Twenty theme. Read more use ajax and can generate conflict with outdated theme or plugins, or simply not updated js files.
Actually there is a little JS notice:
OneSignal: Could not load iFrame with URL https://otoparkcom.onesignal.com/sdks/initOneSignalHttp. Please check that your 'subdomainName' matches that on your OneSignal Chrome platform settings. Also please check that your Site URL on your Chrome platform settings is a valid reachable URL pointing to your site.
Hello,
I am using latest WordPress and Buddypress softwares. Since i install buddypress, i have a problem. When someone writes a long comment in activity, “Read More” link doesn’t work. When clicked on it, its class changes to “loading” but nothing happens. The “Read More” button which located on activity content is working, but it is not working on activity comments.
My website is otopark.com My website is Turkish so you can see “Read More” button as a “Devamini Oku”
I’m using WordPress Version 4.5.2, BP Version 2.5.3 and installed Salutation WP Theme.
I have set up extended profile fields using multi-select checkboxes. It appears that I have set up the fields correctly. See screen shot #1. However, when a user tries to edit their personal interests they see duplicate fields on the edit screen. See screen shot #2.
How do I remove the duplicate fields on the user’s edit screen?
https://www.dropbox.com/sh/xc4suyybb8la56s/AAB752JqHXWBviJlkj68ANm9a?dl=0
I am very new to Buddypress and would appreciate any help you can provide.
Essentially my issue is I am trying to see a users profile/registration before I activate them because their registration process includes info/files that need to be vetted before activation. Now it appears there’s no way to do that under vanilla buddypress/manage signups menu, but per this thread I can see all that info under the BP registration plugin.
The issue becomes I need to activate/approve the user twice; once under manage signups, once under BP registration.
That’s a question better to ask on BP Registration support forum.
Thanks, i found helpful plugin for solution.
Plugin Name:
BuddyPress Xprofile Custom Fields Type
https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/
Add a a new field group to profiles, call it CV, add some fields and options and you’re done.
User Extended Profiles
As you certainly want to get this part a bit apart of the other profile fields, you can also use this plugin who brings a nice tabbed profile page.
Group Extension API only works for groups. Andrew is asking about member navigation.
There is currently no member extension API.
Check out the bp_core_new_nav_item() and bp_core_new_subnav_item() functions in bp-core/bp-core-buddybar.php:
https://buddypress.trac.wordpress.org/browser/tags/2.6.0-rc1/src/bp-core/bp-core-buddybar.php?marks=15-38,369-399#L15
You’d want to register your navs on the 'bp_setup_nav' hook.
eg.
function my_custom_bp_nav() {
// Fill this in from the documentation.
$nav_args = array();
// Add nav.
bp_core_new_nav_item( $nav_args );
// If you need to add another nav, copy and paste the block above and paste here.
}
add_action( 'bp_setup_nav', 'my_custom_bp_nav' );
Check out this older example on the codex as well:
https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/
Depending on your requirements, you could also use the BP Skeleton Component:
https://github.com/boonebgorges/buddypress-skeleton-component
However, that might be too much for what you need.
if it helps following non bp errors with rc1
Notice: bbp_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 2.3.) in wp-includes/functions.php on line 3897
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). === Trace: #6 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(421): get_current_user_id() #7 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(31): Yoast_Notification_Center->retrieve_notifications_from_storage() #8 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(49): Yoast_Notification_Center->__construct() #9 wp-content/plugins/wordpress-seo/wp-seo-main.php(373): Yoast_Notification_Center::get() #10 [internal function]: load_yoast_notifications(”) #11 wp-includes/plugin.php(525): call_user_func_array(‘load_yoast_noti…’, Array) #12 wp-settings.php(277): do_action(‘plugins_loaded’) #13 /opt/www/hobbysocialnetwork.c in wp-includes/functions.php on line 3897
even with yoast seo disabled the site doesnt come up
@werose- thank you for your reply.
you say about facebook api plugin?
https://wordpress.org/plugins/facebook-api/
but i think this help only in send, share, follow, like button, comments etc…
can we make signup process like facebook using this plugin?
Hi,
https://buddypress.trac.wordpress.org/ticket/6772
I understand that the next version had a preview of the URL That Is shared and shows up on BuddyPress activity
I tested but I see very different results (a title with HTML layout, an url ..)
but no display with the first picture (much like Facebook) !!
notification not working on blog posts.
It’s not implemented. See why on #4046
But you can eventually try the one or other plugin actually available on WP repository.
Particulary Mentionable, Email Mentioned or Mention comment’s Authors
go to pull requests
https://github.com/ddean4040/BP-Group-Hierarchy/pulls
exampe: check christianwach request…you would get the files he would have modified….
you can see the latest one would be for BuddyPress 2.6 which would release soon…
dont think so this would be merged in bp…the moderators would have better idea on this…but BP Group types is comming in BuddyPress 2.6..just wait for that if that would meet your requirements cause that would be in the core of bp…
https://buddypress.trac.wordpress.org/ticket/6784
Hi,
I have a problem. Strangly enough i used to be able to private message anyone but now it doesnlt work. That is that i can not select a user to send a private message to. I can type a name with or without the @ sign but nothing happens. It works only if you go to a users profile and click on the “send private message” button.
Any Ideas anyone?
Hope you can help me. Website is https://lounge.azie-expert.nl
wordpress: 4.5.2
buddpress: 2.5.3
Can you log in to wordpress.org?
Hi, I have wordpress 4.5.2 and buddypress 2.5.3.
I use woffice theme and can’t create my own user menu.
Well, i can create it, but it doesn’t go to replace buddypress default menu, but it just get added to it.

What can i do?
Thanks for helping!
BuddyPress 2.5.0 Beta 1 is now available for testing. You can download the 2.6.0-rc1 zip or get a copy via our Subversion repository. We’d love to have your feedback and testing help.
Read more about the beta here: https://buddypress.org/2016/06/buddypress-2-6-0-beta-1/
Thanks for your testing help!
—-
Please do not report issues in this thread. Create a new topic and tag with 2.6.0.