@mercime,@Hugo,@bphelp,&@chouf1,
I was able to achieve the desired result by slightly modifying the code suggested by Mercime.
here is what UI have done .
Instead of “pad-registration” I added =”padder one-column” in my register.php
In my style .css ,I added div.padder one-column { padding: 19px; }
All modifications have been done only in my child theme folder only.
Is this method advisable?
Instead of commenting the line:218 (1.6.5) at the end of the file // get_sidebar( ‘buddypress’ ); in child-theme/registration/register.php, Can I remove the same? Will it cause any issue?
I have Buddypress and bbPress installed.
I’ve deactivated every plugin but those two and the problem remains.
When making a comment or forum post and using the img button in the Text mode of comments in forums it does not post the photo for logged in users. However, as Admin, I can post photos normally and also go into a users account through the admin and insert a photo.
Same with using html to insert a photo. Users can’t but I can.
Website:
http://www.MedoWorld.com
The site is a skeleton without all the plugins.
HELP PLEASE….
Tks
Works with ios 6 and up and Android has some support. You need WP 3.5 and BP 1.6 +
Excited to see the introduction of bp_user_query to speed things up. +1 to the developers
status updates (notices) are stored in the bp-activities table.
I don’t know how you can really move them from a group to another, tables relations are a bit complex.
https://buddypress.org/support/topic/what-are-mptt_right-and-mptt_left-in-bp_activity-table/
You have t ostudie the activites table structure and inspire you from the 2 two plugins who helped you to migrate somehow.
Nothing better to say at the moment.
Hey guys/gals I’m using buddypress and would like to create a custom login on the front page. I’ve add this code to my bp-custom:
define(‘BP_REGISTER_SLUG’, ‘sburegister’);
function sbu_restrict_access() {
global $bp, $bp_unfiltered_uri;
if (!is_user_logged_in() && (BP_MEMBERS_SLUG == $bp_unfiltered_uri[0]
|| BP_GROUPS_SLUG == $bp->current_component || BP_BLOGS_SLUG == $bp->current_component || BP_ACTIVITY_SLUG == $bp->current_component)) {
bp_core_redirect(get_option(‘home’) . “/register”);
}
}
add_action(‘wp’, ‘sbu_restrict_access’, 3);
And also created a front_page.php and in doing so I added .modal which is part of boostrap a js library to make the front page login pop out which works okay I think.
However, when some hits the ‘create an account’ link I wanted the registration form to pop out using the .modal() js but when I click the link it takes me to stepbusinessup.com/home then displays the registration page I want that to happen on the front page…
@pdillon809 those files should be placed in a folder named buddypress inside your child theme and remember to keep the directory and sub-directories structures intact. Those files should not be placed at the root of your child theme.
Im using buddypress buttons outside the activity loops and want the buttons to work via the same ajax call as in the activity loop.
I.E: I have a custom favourite button on my custom post and want to save to favourites without the page reloading?
Thanks
@modemlooper any news on avatar uploads via mobile devices?
Couldn’t write that page much plainer really, it was intended as a simple primer.
No files are required in the child theme if you are letting bp theme compatibility handle the BP template process, if you wanted to edit just one you would copy it to /buddypress/ preserving the structure that’s seen in the legacy templates folder if you wanted to edit the styles that can be done by copying the styles to /css/ in your theme.
You sound as though you have a mixed bag of theme compatibility and full template file overrides going on or template pack still at work, something confused somewhere.
Hi,
Unable to delete buddypress user, When I go to the user’s profile > Settings > Delete account > click the confirmation box and click delete account, the page reloads, but the user is not deleted.
I agree with @bphelp – child themes are the best option. I’ve been using child themes to make changes to main themes but I’m not yet able to understand how to achieve this with BuddyPress. I have read @hnla ‘s document but the instructions are not clear (at least to me).
I think the issue is lack of a header file but that’s not mentioned in the guide. The pages load but without ANY styles. The registration page has a header but not activity. Activity page begins with div id=”buddypress” and has no footer either. I’m sure this is easy to fix but I want to use the recommended method.
Is there a document that clearly states the files required in the child theme? I have copied ALL the files from the legacy folder but @hnla ‘s document appears to state that only the files that require editing need copying (so long as the directory structure is maintained)
Sorry for not “getting” this – I’ve tried doing the research but it’s never clear whether the instructions relate to 1.7 or the “quite” different previous versions.
A list of the contents of the child-theme folder are listed below:
activity (taken from ../bp-templates/bp-legacy/buddypress/)
blogs (taken from ../bp-templates/bp-legacy/buddypress/)
css (taken from ../bp-templates/bp-legacy)
forums (taken from ../bp-templates/bp-legacy/buddypress/)
functions.php (contains a couple of functions – created by me and not bp related)
groups (taken from ../bp-templates/bp-legacy/buddypress/)
members (taken from ../bp-templates/bp-legacy/buddypress/)
registration (taken from ../bp-themes/bp-default)
rtl.css (empty of rules)
shortcodes_bp.php (couple of shortcodes – created by me and not bp related)
style.css (child theme required file)
@chouf1 I’m sorry, I totally understand what you mean. Sometimes I’m in such a hurry that I forget to explain everything properly and clear :P.
Anyway the plugin I use is CodeStyling Localization.
Like I said, I also tried to edit the po file of wordpress and buddypress with notepad++ and when I update the old file in the ftp nothing changes unfortunately.
`// Gravar Anuncio
add_filter ( ‘bp_blogs_record_post_post_types’, ‘activity_publish_custom_post_types’,1,1 );
function activity_publish_custom_post_types( $post_types ) {
$post_types[] = ‘user_images’;
return $post_types;
}
add_filter(‘bp_blogs_activity_new_post_action’, ‘record_cpt_activity_action’, 1, 3);
function record_cpt_activity_action( $activity_action, $post, $post_permalink ) {
global $bp;
if( $post->post_type == ‘user_images’ ) {
if ( is_multisite() )
$activity_action = sprintf( __( ‘%1$s publicou um novo Anúncio: %2$s’, ‘buddypress’ ), bp_core_get_userlink( (int) $post->post_author ), ‘‘ . $post->post_title . ‘‘, ‘‘ . get_blog_option( $blog_id, ‘blogname’ ) . ‘‘ );
else
$activity_action = sprintf( __( ‘%1$s publicou um novo Anúncio: %2$s’, ‘buddypress’ ), bp_core_get_userlink( (int) $post->post_author ), ‘‘ . $post->post_title . ‘‘ );
}
return $activity_action;
}`
This i use to record ONE activity, but HOW to register ANOTHER
@chouf1 internationalization plug and I tried to edit it manually. When I translate wordpress and the theme by itself it works, but when I want to translate the dutch buddypress nothing happens.
@fernon
buddypress-nl_NL.mo must be in wp-content/languages
Po file is for translating. It’s a working file.
Mo file is for translation throught php gettext. Only the mo is mandatory, not the po or the pot
Once you finish the translation of a po file, you need to compile it to mo format with poEdit. (or equivalent tool)
Hi, I find this plugin
https://wordpress.org/support/plugin/buddypress-group-folders
But i find something with more support, for professional support
Thanks
@timvango I’ll see if I got a crash report from you… Otherwise, a logcat output would help.
Hello,
WHen i start the app on my Galaxy Note 10.1, i see the orange bar with the logo, and than it says BuddyDroid has stopped. I dint test it on a mobile phone now, but why it dint start? Is this because I use an tablet?
GReetings,
Tim van Gompel
http:timvangompel.nl
P.S sorry for my bad English
Hi,
I had buddypress 1.2.x and decided it was time to upgrade it. I just clicked on the upgrade to 1.6.5 and I noticed that my entire wp-admin went completely blank after the automatic update.
So I then remembered that I’ve previously read that you have to get 1.5 first before. So I removed the 1.6.5 and instead did the upgrade setup with buddypress version 1.5.6 that I found.
That version seems to work without any problems. But the problem still persists in trying to upgrade to 1.6.5. I do have the latest wordpress version. I can’t link to the site due to in being in maintenance mode.
Do you know what the problem could be and solution? Can it be the fact that I removed multisite and turned it into a single blog? Can it be that I accidentally got the 1.6.5 plugin before getting 1.5.6 and doing the setup? Theme compability issue?
Any help is appreciated 🙂
/Robert
An alternative menu code for BuddyPress menu:
http://theme.firmasite.com/support/topic/account-menu-in-top-menu-bar/
It adds login form for visitors and it becomes buddypress menu for logged-in users. Code needs php5.3+ atm. You can play with it 🙂
Hi Everyone:
I posted this question on bbPress.org forums and finally realized that I should have posted the question here. Is it possible to assign Groups to Forums? For example I have two groups. Group A is Managers / Execs , and Group B is the Employees. There are two Forums I setup: Forum A is Manager / Execs forum and Forum B is Employees Forum. I want Group A (Managers/Execs) to have access to both Forum A & B. For Group B (Employees), I only want them to have access to Forum B.
Is this possible or do I have to create two subdomains and create two different buddypress installations? The only issue I have with that is, now Managers have two different logins and two different address to check everyday.
Any help would be great!
Hi, I’ve got a dutch buddypress and everything works fine (installed it in dutch) But the problem is that I want to change some words but nothing seems to work. I changed all the buddypress.po files in wp-content/languages and plugins/buddypress/bp-languages. The original text stays the same weirdly enough. Has anyone experienced the same?
Thanks
I changed my search terms and founded this:
https://buddypress.org/support/topic/how-do-i-delete-item-in-account-menu/
I applied the changes to remove the nodes ‘my-account-forums-favorite-topics’ and ‘my-em-events’. Furthermore, following the complete WP class guide I realized I can change the “href” of the links too…
However, thank you all for the great job you do…
The thread can be considered [solved]…
Saluti