Search Results for 'buddypress'
-
AuthorSearch Results
-
October 2, 2015 at 3:20 pm #245008
In reply to: will the buddypress be compatible with php7?
Henry Wright
ModeratorIt looks as though BuddyPress has got PHP 7 in the bag ๐
October 2, 2015 at 1:32 pm #245007In reply to: After Migration All Members and Activity are Missing
billreed
ParticipantHi there Justin,
I’ve run into a similar issue but in reverse.
We’re in the process of migrating an individual WordPress site with BuddyPress to a multi-site WordPress with BuddyPress.
In my case, the normal practice would be to rename the WordPress tables from wp_ to something like wp_99_* , where 99 represents one of the site IDs.
The tool I used called “Export2 Multisite”, does a great job at fixing the table names.
However, it’s not smart enough to handle the data merge of the wp_bp_* and wp_rt_* table names.Regardless, I’m seeing the same symptoms on the site I migrated from a single WordPress install to a multi-site WordPress.
So, any help whatsoever from this community on migrating sites with Buddypress either coming FROM or TO a multi-site would be GREATLY appreciated!
October 2, 2015 at 11:59 am #245006In reply to: will the buddypress be compatible with php7?
Paul Wong-Gibbs
KeymasterHi
We’ve been testing against PHP7 nightly releases for a long time. It helps that our PHP is newer than most of WordPress’, so we have less really old stuff to migrate.
You can view our test coverage on https://travis-ci.org/buddypress/BuddyPress/ (“PHP: nightly” is PHP7), as you can see, there’s currently a failure with one test that we need to fix. It looks fairly straightforward to fix, and we’ll do that soon.
This one test aside, to the best of knowledge, yes, BuddyPress works with PHP 7.
October 2, 2015 at 11:12 am #245004In reply to: will the buddypress be compatible with php7?
Henry Wright
ModeratorGood question! This is likely to being looked at by the core team.
See this post which describes what is being done by the WordPress core team: https://make.wordpress.org/core/2015/09/10/wordpress-and-php7/
My guess is the BuddyPress core team are doing something like that. Maybe @djpaul can add something here?
October 2, 2015 at 11:10 am #245003In reply to: will the buddypress be compatible with php7?
danbp
ParticipantHi,
of course, in so far that php 7 will be used by WordPress. BuddyPress’s dev follow the same route.
October 1, 2015 at 11:51 pm #244995In reply to: Site not loading for Logged out users after update?
sambssc
ParticipantAlso I just discovered the Buddypress member profile pages aren’t loading for logged in users.
October 1, 2015 at 9:20 pm #244987In reply to: Profile Tabs
October 1, 2015 at 7:17 pm #244983In reply to: Members Page not Loading!
@mercime
Participant@wecreatehype Have you done any basic troubleshooting like deactivating other plugins except BuddyPress and changing to the WP default theme? Also, do provide more information about your installation so we won’t be chasing ghosts. https://buddypress.org/support/topic/when-asking-for-support-2/
October 1, 2015 at 7:12 pm #244982In reply to: Converting BBPress to BuddyPress
@mercime
ParticipantI have read many stories about converting BuddyPress to BBPress format
@netentry Just to clarify that the only converting we ever did was to import content from the very old stand-alone bbPress 1.x.x versions included in very old BuddyPress installations into the bbPress 2.x.x plugin a long while back. That’s it. BuddyPress itself cannot be converted into bbPress forums.Are there any good tools for performing a BBPress-to-BuddyPress conversion?
Another clarification here. BuddyPress is not a forum. It is a social network plugin with many components which could have Sitewide and/or Group forums if bbPress 2.x.x is installed and activated.
So in your case, if you only have the bbPress plugin activated, you could install and activate BuddyPress and set it up in the bbPress Settings screen to allow Group forums in addition to the Sitewide Forums. Take note however, that if you activate bbPress and BuddyPress at the same time, the BuddyPress member profile pages will trump (or will show up instead of) the bbPress member profile pages.
October 1, 2015 at 6:41 pm #244981ckchaudhary
ParticipantThis sounds doable theoretically. But i am sure there will be implications ๐
abc.com – table prefix wpabc_
xyz.com – table prefix wpxyz_Now in xyz.com, if you want to use buddypress tables of abc.com, go to active theme of xyz.com > functions.php and add the following code: ( untested )
add_filter( 'bp_core_get_table_prefix', 'bporg_244943_change_table_prefix', 99 ); function bporg_244943_change_table_prefix( $prefix ) { return 'wpabc_'; }October 1, 2015 at 5:50 pm #244975In reply to: Best Theme for Busy Community?
ckchaudhary
ParticipantI’d vote for boss theme too. It looks awesome and is specifically built for buddypress network sites.
http://www.buddyboss.com/product/boss-theme/. You might want to check its live demo.October 1, 2015 at 2:46 pm #244967In reply to: Best Theme for Busy Community?
Henry Wright
ModeratorHey @wecreatehype
Feel free to show off your community in the Your BuddyPress forum. It’ll be great to see a live version of Boss “in the wild”.
September 30, 2015 at 10:49 am #244934In reply to: Buddypress group member subscribe to group forum
danbp
ParticipantHi,
consider this plugin:
https://wordpress.org/plugins/buddypress-group-email-subscription/September 30, 2015 at 12:09 am #244930In reply to: Contact form on profile
Henry Wright
ModeratorYou could try the BuddyPress Ideas forum:
September 29, 2015 at 8:22 pm #244917In reply to: Exclude groups from get_total_group_count
pandreas
ParticipantThank you for your answers and recommendations!
The custom function that I have written before, I suppose it does what I want very well. Am I right?
Here it is again.
function filter_bp_get_total_group_count() { global $wpdb; $hidden_sql = "WHERE slug not in ('health', 'social', 'cultury')"; $bp = buddypress(); return $wpdb->get_var( "SELECT COUNT(id) FROM {$bp->groups->table_name} {$hidden_sql}" ); };September 29, 2015 at 5:23 pm #244914In reply to: Redirect users who aren’t logged in
@mcuk
ParticipantHi,
Maybe using this would help stop users who aren’t logged in seeing things you don’t want them to in the first place (and therefore they won’t be able to try and access it). Not really the redirect solution you are after but it may be of use. Works with BuddyPress (I don’t use bbPress).
//Prevents non logged in users seeing pages other than those permitted function bpcustom_restrict_bp_pages() { global $bp; //These pages are permitted to logged out users if( bp_is_blog_page() || bp_is_register_page() || bp_is_activation_page() ) { return; } if( !is_user_logged_in() ) { bp_core_redirect( $bp->root_domain ); } } add_action( 'get_header', 'bpcustom_restrict_bp_pages' );September 29, 2015 at 3:50 pm #244913In reply to: Profile Field Text Area Max Character or Word Length
@mcuk
ParticipantHi @danbp thanks for reply.
Tried the code you wrote in the link above and it works fine. But as with the one referenced in my first post it reduces the string length upon display rather than preventing the user typing in a large number of characters in the first place (and the data being stored in database).
So moved onto looking at the code snippet by @henrywright for the sign up page. Would be suitable if i could convert it to work with profile fields. Got to this stage with a few q’s:
function my_textarea_validation() { $custom_field_id = bp_get_member_profile_data( 'field=Mini Bio' ); //is the use of $_POST['field_' . $custom_field_id] correct to access desired profile field? if ( strlen( $_POST['field_' .$custom_field_id] ) > 5 ) { global $bp; //which $bp->... error message to use? $bp->signup->errors['field_'] = __( 'CUSTOM ERROR MESSAGE', 'buddypress' ); } } //which hook to use? (to affect the textarea on Profile > Edit navigation tab) add_action( '???', 'my_textarea_validation' );September 29, 2015 at 2:24 pm #244910In reply to: Pagination gives error on buddypress tab
ggsalas
ParticipantHi @danbp
I think I have done the same configuration as you, but don’t work for me. Could be possible thar your code not work with the new version of Buddypress?
This are my posts:

This is that I see with
'posts_per_page' => 2,:

Before, I have tested with Twenty Thirteen, Now I’m testing with Twenty Fifteen theme.
I have created a bp-custom.php file on plugins/ folder and deleted my previous plugin.
The only plugin I have active is Buddypress:

—
I would like to display only one tab with the posts of the displayed user, without subtabs. My goal is remove “My posts” and “My Comments”. I would like to display the posts inside the “Contributions” tabSeptember 29, 2015 at 2:17 pm #244909In reply to: Comments on photos by BP members’ account
caesarhills
ParticipantThanks for your reply, after reading it I’ve seen is the most adviced plugin for that aim.
Is there any live demo working or a live showcase of it?
I didn’t get if as the admin of the website I could create a page for mediapress grid album in which I’m the only one allowed to upload pics and letting all the registered members commenting on the pics, but at the same time as I said, not allowing anyone to upload their pics in that grid.
It should work like instagram but just with the buddypress accountsSeptember 29, 2015 at 11:45 am #244902In reply to: Pagination gives error on buddypress tab
ggsalas
ParticipantHi @danbp
I have added your code as plugin on my new test site. On this site have activated only 2 plugins: buddypress and your code.
This is what I see on the “My posts” tab (there is no navigation):

I would like to display only one tab with the posts of the displayed user, without subtabs.
September 29, 2015 at 2:40 am #244896In reply to: Slug Conflict (/search/) with Buddypress
nautinz
ParticipantSorry missed these
1. Which version of WordPress are you running?
4.3.12. Did you install WordPress as a directory or subdomain install?
root dir3. If a directory install, is it in root or in a subdirectory?
root4. Did you upgrade from a previous version of WordPress? If so, from which version?
no5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes6. Which version of BP are you running?
2.3.37. Did you upgraded from a previous version of BP? If so, from which version?
no8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Can I submit this to you privately?9. Are you using the standard WordPress theme or customized theme?
http://themeforest.net/item/porto-responsive-html5-template/410698710. Have you modified the core files in any way?
no11. Do you have any custom functions in bp-custom.php?
not yet12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
WP 4.3.113. Please provide a list of any errors in your serverโs log files.
actually none!14. Which company provides your hosting?
digitalcoean/cloudflare15. Is your server running Windows, or if Linux; Apache, nginx or something else?
nginxSeptember 29, 2015 at 12:11 am #244894In reply to: Profile Field Text Area Max Character or Word Length
danbp
ParticipantHi,
read here, maybe it helps
https://buddypress.org/support/topic/how-to-check-if-the-length-of-field-is-too-long/or try:
https://wordpress.org/plugins/buddypress-xprofile-validate-with-regex/September 28, 2015 at 8:09 pm #244882jbakuk
ParticipantHi @modemlooper, thanks for getting in touch.
Yes I have site tracking active and I’m not using custom post types, thanks for the code though it will come in handy if and when I do.
There was no problems before moving url, I’ve double checked and there is no entries of the old url in the database.
Is there a buddypress php file that might not have updated the url? That’s all I can think of but I can’t find anything.
Right now it’s looking like I might just have to delete everything and start over ๐
September 28, 2015 at 3:09 pm #244873modemlooper
Moderatordo you have site tracking option on in the BuddyPress settings? Also custom post types do not show by default and you have to add them.
add_post_type_support( 'custom-post-type-name', 'buddypress-activity' );September 28, 2015 at 3:07 pm #244872In reply to: Linking BuddyPress, WooCommerce and rating systems.
modemlooper
ModeratorDoubt there is a plugin this specific. I’m not sure the specifics but are you saying anyone can review a woo product if they are not logged in?
BuddyPress doesn’t have a specific method for logging in its the same login as WP.
You might try this http://stackoverflow.com/questions/24747095/woocommerce-require-registration-to-buy
-
AuthorSearch Results