Search Results for 'buddypress'
-
AuthorSearch Results
-
April 7, 2016 at 3:10 pm #252195
In reply to: $bp global object deprecated
Henry Wright
ModeratorYou can still use
global $bp;at the beginning of your functions to access the global’s data. But yes,buddypress()is a far better way. You should be able to update the Codex yourself? If that’s not the case, let me know ๐April 7, 2016 at 3:05 pm #252192In reply to: Filtering Title in BuddyPress
Henry Wright
Moderatorso I guess BuddyPress is bypassing or overriding this filter
If that were the case, you can increase the priority:
add_filter('document_title_parts', 'custom_groups_title', 20);But I don’t think that’s the problem in this case. Maybe check if
bp_is_group()andbp_current_action()are working as you expect them to be.var_dump( $some_value );will be useful here.April 7, 2016 at 11:54 am #252185In reply to: Special characters changing: e.g. รค >> u00e4
danbp
ParticipantHi @xrossgg,
which language do you use on your site and which server type (apache, nginx, iis,..)? Also can you tell exactly what you mean by BP names ?
A priori your issue has nothing to do with BuddyPress, but with the way gettext is excuted or how device are handled (charset…) in your language.
April 7, 2016 at 11:34 am #252184redokodesign
ParticipantHey all,
A HUGE thank you to @djpaul and everyone else who helped to solve this problem for me.
Paul asked me to install the following plugin:
https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/
– This fixed the problem for me instantly. The site now has working notifications for Buddypress, BPpress and WordPress. Amazing! If you too are running WP-mail-SMTP and having problems do try this fix.
The Buddypress community is always so helpful.
Thanks again,
T
April 7, 2016 at 10:11 am #252182In reply to: Shortcode to create Edit Profile Page
Henry Wright
ModeratorThe edit form is in edit.php. You will need to add that to the page but I don’t think it will be as easy as copying and pasting because the default form processing may depend on the current URL.
April 7, 2016 at 1:35 am #252180In reply to: CSS causing cover image to disappear.
mfalk75
ParticipantOK, so this is the code I have put into my child theme:
// COVER IMAGES // Add css style for background cover images function bp_legacy_theme_cover_image_css( $settings = array() ) { $theme_handle = 'bp-child-css'; $settings['theme_handle'] = $theme_handle; $settings['callback'] = 'bp_legacy_theme_cover_image'; return $settings; } function bp_legacy_theme_cover_image( $params = array() ) { if ( empty( $params ) ) { return; } return ' #buddypress #header-cover-image { height: ' . $params["height"] . 'px; background-image: url(' . $params['cover_image'] . '); } '; } add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'bp_legacy_theme_cover_image_css', 10, 1 ); add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'bp_legacy_theme_cover_image_css', 10, 1 );I get this error: Fatal error: Cannot redeclare bp_legacy_theme_cover_image() (previously declared in /home3/xxx/public_html/mysite.com/wp-content/themes/valenti-child/functions.php:49) in /home3/xxx/public_html/mysite.com/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php on line 1928
Could someone point me in the right direction,…this is driving me nuts!
April 7, 2016 at 12:47 am #252178mfalk75
Participanthmm, thanks, I don’t get it either. I am editing the file in my child theme at this location: mysite.com/buddypress/members/members-loop.php It’s definitely editing the website as if I delete this part then the last update from a member does not appear. Your code makes the status update appear but it just don’t limit it. I even tried changing 50 to 10 and still long updates. Thanks for your help. Not sure what to do now.
April 6, 2016 at 5:01 pm #252173In reply to: Members can’t update their own passwords
Paul Wong-Gibbs
KeymasterWe (the project, BuddyPress) recommend that you do not use W3TC’s Object Caching support. There is a bug in it that causes the password hash to be reset when a user is updated. This is a bug in W3TC and not BuddyPress, and we are not going to workaround the issue in BuddyPress just to support a bugged plugin.
April 6, 2016 at 2:21 pm #252170Topic: Shortcode to create Edit Profile Page
in forum How-to & Troubleshootingma3ry
ParticipantI am trying to integrate eMember Registration with BuddyPress Extended Profiles.
I created a page at https://christiangays.com/edit-profile/ with shortcode [bp_profile_edit_url]
I have also installed BP Profile Shortcodes pluginThe page shows:
Edit Profile
https://christiangays.com/members/mary/editWhat I want it to show is the actual Edit Page, not a link to the edit page.
Can you tell me please how I accomplish this.
Thank you.April 6, 2016 at 1:25 pm #252167In reply to: IMPORT / EXPORT BUDDYPRESS DATA
Manish Kumar Agarwal
ParticipantPaid Plugin
youngtechleads.com/buddypress-members-export
youngtechleads.com/buddypress-members-import
Hope these two plugins will help the community with minimum cost.April 6, 2016 at 1:07 pm #252166Juljan.By
ParticipantGot the same erorr.
It’s pity. Why this plugin is so hard coded?
Why I cannot see log files with errors or change environment to development/production?Wordpress v4.4.2 (single site)
Buddypress v2.5.2April 6, 2016 at 12:59 pm #252165shanebp
ModeratorIt works here.
You need to put it in a template overload of this file:
buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.phpReplace the update code with this:
<span class="update"><?php $args = array( 'length' => 50 ); bp_member_latest_update( $args ); ?></span>April 6, 2016 at 8:33 am #252159In reply to: Only images in activity stream
nownesx
ParticipantI have a good knowledge of php, but I’m not a super programmer. developing themes for wordpress. BuddyPress documentation for plugins is poor.
Can you give me some guidance about? what are the files involved than post-form.php?April 5, 2016 at 9:31 pm #252153In reply to: Email Notifications not sending
christopherwayne
ParticipantI have the same problem: buddypress not send emails notifications to users. Some temporary solution while definitely solve?
April 5, 2016 at 4:52 pm #252151In reply to: Parameter 1 valid call back error
Paul Wong-Gibbs
KeymasterIt’ll be BuddyPress in conjunction with something else. What theme are you using? What other plugins are active?
April 5, 2016 at 3:14 pm #252143ma3ry
ParticipantAs I said in my original post “I have tried it with all plugins deactivated and with twenty-fifteen theme.”
However I just got another clue. I reinstalled BuddyPress and this time when I tried to upload an image I got the following different error.
“Upload Failed! Error was: That photo is too big. Please upload one smaller than 200 B”
200 bytes is pretty darned small. Why would this be?
Does this info help at all?
April 5, 2016 at 3:03 pm #252142In reply to: Parameter 1 valid call back error
justplaindoug
ParticipantBuddy press is the source of the problem. When I deactivate it the error goes away. There is a lot of themes and plugins installed, and I have deactived everything except buddypress and get the error.
April 5, 2016 at 2:53 pm #252139Henry Wright
ModeratorCan you try ruling out your set up?
Disable all plugins (aside from BuddyPress) and activate Twenty Fifteen. Then try uploading a profile pic. If that test works then we can safely say your server is working as it should be.
April 5, 2016 at 2:06 pm #252137In reply to: Comments in Activity Stream – Sorting
cmavrikas
ParticipantHello,
this is something I am searching around for a long time myself too. By default, the most recent updates are in the top. Even if there is a recent comment for an old update, that update remains hidden under the top.
What would be ideal is to have the updates sorted by the most recent date, either of the update’s itself or one of its comment’s date. And be displayed together as a group.
There has been a proposal in the past, but it just displays the single comment on top, as an extra to the blog of the original update.
https://buddypress.org/support/topic/blog-comments-not-appearing-in-activity-stream/April 5, 2016 at 1:29 pm #252136ma3ry
ParticipantI have tried it with images from 4kb to 12 kb – jpg, gif and png. Nothing works. However I can take a pic of myself and it uploads perfectly.
I can upload to Media Library without any problems. The only issues seems to be uploading a BuddyPress profile pic.
Could one of my files be corrupt? Should I change some files? I don’t know what else to try.
April 5, 2016 at 9:17 am #252132Frank G.
ParticipantHi @djpaul .
This was only a cosmetic decision, I prefer to send emails from an address of my choice.
Great work BuddyPress team.
Thanks,,,April 4, 2016 at 10:06 pm #252124In reply to: Remove BuddyPress Without Losing Blog Posts
Paul Wong-Gibbs
KeymasterJust deactivate BuddyPress. It won’t break anything.
Thanks for trying BuddyPress!
April 4, 2016 at 10:05 pm #252123In reply to: Email Notifications not sending
Paul Wong-Gibbs
KeymasterI’ll continue to give this thought. If WordPress emails are sent without ANY plugin or customisation, I am not sure why BuddyPress emails aren’t being sent — we put a lot of work into the v2.5.2 release to try to fix this exactly situation/problem.
April 4, 2016 at 8:31 pm #252114Halo Diehard
ParticipantPretty sure your WordPress members have to post after BuddyPress has been installed, or they don’t show up as BuddyPress members ๐ I’m currently looking into this as well, to see if any updates have remedied this. It’s very confusing to my members when they click the BuddyPress members link and everyone isn’t there. Some of my members keep in contact even if it isn’t through my site. It’s really not a true integration with WordPress set up this way, so I hope it’s been updated.
April 4, 2016 at 8:01 pm #252112In reply to: button does not appear, “Send Update”
Henry Wright
ModeratorCan you post some information about your install?
- Active theme
- Plugins activated
- BuddyPress version
- WordPress version
Thanks!
-
AuthorSearch Results