Search Results for 'wordpress'
-
AuthorSearch Results
-
April 15, 2016 at 8:44 pm #252485
In reply to: follow button instead of add friend
shanebp
ModeratorYou need to do more than add a button – you need a plugin:
https://wordpress.org/plugins/buddypress-followers/If you don’t want Friends functionality, turn off the Friends component:
wp-admin > Settings > BuddyPressApril 14, 2016 at 4:49 pm #252457In reply to: Most links redirect to homepage
skulldragon
Participant1. Which version of WordPress are you running? The latest
2. Did you install WordPress as a directory or subdomain install? Normal install in root
3. If a directory install, is it in root or in a subdirectory? Root
4. Did you upgrade from a previous version of WordPress? If so, from which version? No
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes
6. Which version of BP are you running? The latest
7. Did you upgraded from a previous version of BP? If so, from which version? If there was another version around 2 months ago, yes. Issue persists through both updates.
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
404 to 301
All in one Favicon
bbPress
BP Profile Search
BuddyPress
BuddyPress Cover Photo
Custom Facebook Feed
Divi Builder
Elegant Themes Updater
Events Manager
Go – Responsive Pricing & Compare Tables
K Elements
List category posts
Page Links To
rtMedia for WordPress, BuddyPress and bbPress
s2Member Framework
Slider Revolution
Taxonomy Metadata
WP FullCalendar
WPBakery Visual Composer9. Are you using the standard WordPress theme or customized theme? KLEO
10. Have you modified the core files in any way? No
11. Do you have any custom functions in bp-custom.php? No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? Latest
13. Please provide a list of any errors in your server’s log files.
14. Which company provides your hosting? Siteground
15. Is your server running Windows, or if Linux; Apache, nginx or something else? Apache I think.
April 14, 2016 at 4:37 pm #252456In reply to: Buddypress comment showing in all pages
danbp
ParticipantWe’re unable to help you for Yoo Helios premium theme.
Have you assigned a particular template to the mandatory BP pages: activity, members, groups,… ? If yes, remove them, as BP pages must stay “empty”. Just give them a title and nothing else.
Instead of using an exotic function, better try this solution.
is_buddypressfn definition: You can tell if a page is displaying BP content by whether the current_component has been defined. More here.April 14, 2016 at 3:02 pm #252446In reply to: Chaning DB prefix
gdams82
ParticipantWell, I’m no securities expert by any means, but I need this site to be as hard as possible. I’m just trying to take every precaution. From what I’ve read it’s a fairly common practice: http://www.firedaemon.com/blog/wordpress-hardening-guide
Also, you can block access to wp-config.php with the following in .htaccess, although I’m not sure how someone would be able to view the php anyways.
#block wp-config.php
<files wp-config.php>
order allow,deny
deny from all
</files>Yes, it’s not a catch all. If some one is determined I’m sure there are ways to find your unique prefix. However, I think it would still stop a lot of script kiddies. If someone can inject sql I’d imagine your still in trouble. I would still like to know how to do it though.
Can some one please help me out. The site supports a good cause and they are nice clients. I really don’t want them getting sued if some ones info gets leaked.
April 14, 2016 at 7:20 am #252439vinzen
ParticipantWould disabling the BuddyPress registration process and falling back on WordPress one’s by creating a custom registration form help avoid the need to sync BuddyPress to WordPress profile? – as I interpreted from here – http://stackoverflow.com/questions/15379839/registration-form-in-buddypress. Thanks.
April 14, 2016 at 12:38 am #252433In reply to: Specific management for specific user types
Rimon Habib
ParticipantBuddyPress doesn’t have role based access management system for its components like WordPress roles, However, It has Member Type API now which is a potential lead to creating access management system using member type.
I am actually working on creating this plugin, which will be extension of my another plugin,
http://rimonhabib.com/buddypress-member-type-manager/This plugin allows you to synchronize member types with WordPress user role, which is a potential way to control content based on Member type
By the way, you can turn off friend, messaging features from BuddyPress settings. But I guess you are talking about interacting one specific type of users to that type of users only, in this case, you must need to use Member Type API anyway.
April 13, 2016 at 7:52 pm #252422In reply to: Conflict with Buddypress and WordPress Email
Dono12
ParticipantI figured out the solution. I had to call
add_filter( ‘wp_mail_content_type’, ‘notification_content_type’ );
in each individual email function:
add_filter( 'wp_mail', 'dirty_wp_mail_filter' ); function dirty_wp_mail_filter( $args ) { // you can include your custom html mail template here // just use file_get_contents() functions to get template file and any php replace function like // str_ireplace or preg_replace to replace your given placeholder in template by the content which is sent by wp $stripped_mail_content = preg_replace("/<http(.*)>/m", "http$1", $args['message']); add_filter( 'wp_mail_content_type', 'dirty_notification_content_type' ); $dirty_wp_mail = array( 'to' => $args['to'], 'subject' => $args['subject'], 'message' => $stripped_mail_content, 'headers' => $args['headers'], 'attachments' => $args['attachments'] ); return $dirty_wp_mail; } function dirty_notification_content_type() { return 'text/html'; }found here:
core.trac.wordpress.org/ticket/21095April 13, 2016 at 7:09 am #252395Rimon Habib
ParticipantBuddyPress doesn’t have role based access management system for its components like WordPress roles, However, It has Member Type API now which is a potential lead to creating access management system using member type.
I am actually working on creating this plugin, which will be extension of my another plugin, BuddyPress Member Type ManagerBy the way, you can turn off friend, messaging features from BuddyPress settings. But I guess you are talking about interacting one specific type of users to that type of users only, in this case, you must need to use Member Type API anyway.
April 12, 2016 at 9:16 pm #252390In reply to: Conflict with Buddypress and WordPress Email
Dono12
ParticipantNo, the plugin is not online. I built it with bits of code and tuts across the web about customizing WordPress notification emails. if you can send me an email address (please black this out **** (removed at users request ~hnla)) I can send you the plugin and you look it over. I saw on the web that you should remove filter after applying it but it didn’t seem to have any affect.
remove_filter( 'wp_mail_content_type','mycustom_mail_content_type' );April 12, 2016 at 2:03 pm #252379Paul Wong-Gibbs
KeymasterIf one type of email is getting sent and the others aren’t, it might be some part of the content triggering some kind of spam filter on the remote server. It could be some kind of throttling issue, and it’s only by coincidence one type of email is being sent. I don’t know. There’s all sorts of weird possibilities.
We have 2 further email delivery fixes that have been identified, which I imagine we will implement and release within the next 2 weeks. I don’t see how either would directly affect your site since you have SOME BP HTML emails being delivered, but not all — but maybe they will. This is certainly pretty weird.
April 12, 2016 at 11:32 am #252373danbp
ParticipantApril 12, 2016 at 9:40 am #252367In reply to: buddypress members search errors
MC-land
ParticipantHi Henry, thanks ive tried that plugin, its not quite what im after.
Ive also tried https://wordpress.org/plugins/buddypress-global-search/installation/ which was just as inconsistent.We did import all the users through a database import through a custom script, which we suspect might have caused problems. dont know if that helps at all.
April 11, 2016 at 3:44 pm #252342In reply to: Buddypress Upload avatar and photos to ftp
nader.jalayeri
Participanteverything works fine when i upload media using wordpress media library but in user xprofile avatar upload form, can’t upload image to another ftp
April 11, 2016 at 3:10 pm #252338danbp
ParticipantSince WP 4.0, you no more need to add the language constant to wp-config.
Read from here: https://codex.wordpress.org/Installing_WordPress_in_Your_LanguageConcerning brazilian portuguese, the WP translation file is named pt_BR.mo
Once this file is stored in wp-content/languages/, you select pt_br as site language from dashboard > General > site language. This is slightly different from other languages like german or french, who appear as a name in the list and not as de_DE or fr_FR.To get BuddyPress in brazilian, you simply add the buddypress-pt_BR.mo to
wp-content/languages/plugins/directoryTested as ok on a beta install of WP 4.5RC2 and BP 2.6alpha
Portuguese Brazilian translations files
WP Stable 4.4.x pt_BR
BuddyPress 2.5.x stable pt_BRAt the botom of these pages, select Machine Object Message Catalog before exporting.
And to get a plain translation of WordPress dashboard, don’t forget to export admin-pt_BR.mo (stored as sub-project on the left sidebar of translate.wordpress.org).
April 11, 2016 at 2:08 pm #252335In reply to: Complete chat system???
celziobiaz
ParticipantWell, there are several Group chat rooms integrated well with BuddyPress.
When you choose, you need to consider the following:
1 – You can install one on your server, but if you have more than 10 chatters, that will probably load your server. Most shared hosting services, do not allow to install a chat on the server as it is high cpu/mem consumer. In addition, sharing files is dead slow.2 – I recommend a group chat hosted service, it will offload all activity to a remote server, bandwidth is not a consideration. They work with CDN, so everything is pretty fast.
As for your question:
I am very much in favor of RumbleTalk chat plugin, works very well and integrate with your users base.– Ability to send any files (anything from videos, photos, music, etc.)
Yes -You can upload files, pdf,excel..etc, I think any file, but they have size limit
– Ability to text chat
Yes
– Ability to video or voice call to a friend
Yes – they have private chat (you need to allow it in the settings), you must be in ssl to use it (WebRTC)
– (Optional) ability to add other friends or users to the chat
Yes – you can allow facebook/twitter friends
– (Optional) ability to screen share (desktop sharing)
No – no screen sharing
April 11, 2016 at 9:58 am #252320In reply to: New Email Template (Self defeating?)
Paul Wong-Gibbs
Keymaster@backpackersunion Some have asked about the “Hi” part. I suppose that could be changed. I have seen a few people ask, but if I see one post about something here, I normally multiple that number by 100, because very few people find it easy or convenient to get in contact with us (with support question), so probably quite a lot of people would like the option, even if it wasn’t the majority.
The unsubscribe I am a bit less sure of. I don’t want to make it easy for evil people running BP to remove the unsubscribe link for emails they send. In BuddyPress 2.6, an upcoming change means that this unsubscribe link will work, even if you’re not logged in to the site.
From a technical perspective, if we remove the token from the template and put it into the option, if a user has already customised the footer text option, they won’t see the new updated (default value for the) option.
This is not unsolvable, we’d run something on the upgrade routing, but we’d have to stick the token at the very bottom or top of the template. It’d be easy for the site admin to change, but it would annoy them. But it might be worthwhile.
So — maybe? You could create a ticket on buddypress.trac.wordpress.org to see if any other regular contributor likes the idea, or see if you can start a discussion or get feedback from other users via the forum.
April 11, 2016 at 9:45 am #252318April 11, 2016 at 9:43 am #252317Paul Wong-Gibbs
Keymaster@justarandomuser Yes. BuddyPress does not and will not support WordPress’
wp_mail_content_typefilter, so setting this or not does not affect BuddyPress.Postman SMTP plugin re-declares a function called
wp_mail(). BuddyPress will send its emails in plaintext ifwp_mail()has been redeclared.This decision was made because a lot of legacy WordPress plugins that change email content/appearance, or how they are delivered, re-declare
wp_mail()and it is impossible for BuddyPress to know if/how it could support all these custom implementations.If you are using Postman SMTP to only send emails via SMTP, you could find an alternate SMTP plugin. People have mentioned some recently in email support discussions on this forum, though I can’t remember the names. If I find one again, I’ll try to remember to let you know here.
If you are using Postman SMTP for any other purpose, and you don’t want to switch to another plugin that only configures WordPress to send via SMTP, then I’m afraid you’re out of the options at the moment.
You are right that the Customizer does not indicate that the email will only be sent in plaintext in these situations. We’ll get some messaging added to that screen in the next BuddyPress release to clarify that.
April 11, 2016 at 6:17 am #252307Topic: Complete chat system???
in forum How-to & Troubleshootingmichaellanfield
ParticipantSorry if this question has been posted before. I did search and did not find any answer to my question.
My site. http:/thevegansandwich.com (under construction)
At the time posting this (April 11, 2016)
WordPress version: 4.4.2
BuddyPress version: 2.5.2
(I always updated all plugins and WordPress)My question is, I am looking for a complete free or inexpensive chat system/plugin or a way to implement a chat system similar to Facebook, with:
– Ability to send any files (anything from videos, photos, music, etc.)
– Ability to text chat
– Ability to video or voice call to a friend
– (Optional) ability to add other friends or users to the chat
– (Optional) ability to screen share (desktop sharing)Thank you.
April 10, 2016 at 12:36 pm #252294In reply to: Profile is Forcing avatar upload
wiziwiz
ParticipantOk so I have tested with another plugin and it is the same issue,
Nextend Twitter Connect also has the same bug,
https://wordpress.org/plugins/nextend-twitter-connect/everything works fine – it’s just this block that the buddypress will not allow any activity until an avatar is uploaded,
I finally have found a fix and that is turn off this setting
Account Settings
Allow your users to modify their account and notification settings directly from within their profiles.so what is that setting because the user can still change their account – will look into that setting a bit more in another thread…
April 8, 2016 at 4:03 pm #252245In reply to: Post comments not appearing in activity stream?
Mathieu Viet
ModeratorHi there, let’s try to reply to one problem at a time!
Now the posts do appear in activity stream, but not the comments. If i comment on a post, the stream doesn’t show the comments, but if i comment on a post via activity stream, the comment is then seen on a post and on the activity stream.
I guess, this means the BuddyPress “Site Tracking” is active.
1/ WordPress Administration > BuddyPress Settings > Options Tab – Activity Settings section:
Setting ‘Allow activity stream commenting on blog and forum posts’ is not checked. It means when a post or a comment is posted, then an activity will be generated, but it’s not possible to add an “Activity comment” to the generated activities. Just tested with latest WordPress and BuddyPress 2.5.2 and it works as expected:

2/ WordPress Administration > BuddyPress Settings > Options Tab – Activity Settings section:
Setting ‘Allow activity stream commenting on blog and forum posts’ is checked. This means you chose to synchronize comments between the Post object and the corresponding activity object. So a comment on the activity about the post will generate a regular post comment and a regular post comment will generate an activity comment on the activity about the Post. Just tested with latest WordPress and BuddyPress 2.5.2 and it works as expected:

Now @cmavrikas is talking about something else i think. He wants the activity comments to also be displayed like regular activities: in stream mode.
I then advise to use another filter to avoid parsing args / checking the current object of the Ajax querystring:function activity_comments_stream_mode( $args = array() ) { return array_merge( $args, array( 'display_comments' => 'stream', ) ); } add_filter( 'bp_before_has_activities_parse_args', 'activity_comments_stream_mode', 20, 1 );I just tested it, and again it’s working fine in latest WordPress / BuddyPress 2.5.2…
I advise you to deactivate plugins/come back to a default WordPress theme and do the opposite work to find the plugins or theme that prevents this regular behaviors.
April 8, 2016 at 12:44 pm #252233In reply to: BP Plugins List Missing????
danbp
ParticipantThat list is/was pretty old and not well maintained. BP’s codex is under permanent reconstruction (made by volonteers), so it’s no tomorrow morning that that list will be back.
Actually, the best place to get available BP plugins is the WordPress Repository. Recommanded search keyword is buddypress. 😉
April 8, 2016 at 11:36 am #252229In reply to: buddypress members search errors
Henry Wright
ModeratorThis might not fix the problem but have you tried BP Profile Search?
April 7, 2016 at 8:33 pm #252205In reply to: Extended Profiles Not on Register Page
concoa
ParticipantUPDATE:
I deleted all BP files and the plugin and did a reinstall.PROBLEM #1)
I am still having trouble with the Register page. I do not know what this error refers to:displays an error message:
“Profile Details
Warning: Creating default object from empty value in /home/content/p3pnexwpnas09_data01/28/2853428/html/wp-content/plugins/buddypress/bp-xprofile/classes/class-bp-xprofile-group.php on line 649”Line 649 is:
$fields[ $key ]->visibility_level = $field_visibility;PROBLEM #2)
Registration submission is now working, but an auto response email is being sent. Is there something in BuddyPress (or WordPress) to disable this? I’m getting an email saying:
Hi test4,
Thanks for registering!To complete the activation of your account, go to the following link: http://blahblahblah.com/activate/ef23a0f24958c3a125917f7e3bac95f8/
I’m using s2Member to allow admin approval of registrations. This email needs to be removed. Thx.
April 7, 2016 at 8:12 pm #252204In reply to: Filtering Title in BuddyPress
BobSD99
ParticipantHi Henry – thanks for response. As confirmed by both the Codex (Code Reference) and my successful use of this method in the same installation outside of BuddyPress, $title is indeed an array.
In fact, I tested my function without the
if ( bp_is_group() ){conditional, and the filter works on the pages NOT created/affected by BuddyPress, which confirms BuddyPress is bypassing this filter.For testing purposes, I modified the function as follows:
// test parameters passed to document_title_parts filter function test_groups_title( $title ){ print_r( $title ); exit; } add_filter('document_title_parts', 'test_groups_title', 10);And BuddyPress pages output the following array:
Array ( [title] => [site] => My-Website.com )Which suggests that BuddyPress is neither supplying data to this array nor utilizing it for the title output.
I did a grep of BuddyPress and bbPress and I am finding calls to the deprecated
wp_title()function:$ grep -r 'wp_title' ../plugins/b*press/* ../plugins/bbpress/includes/core/filters.php:add_filter( 'wp_title', 'bbp_title', 10, 3 ); ../plugins/bbpress/readme.txt:* Fix custom wp_title compatibility ../plugins/buddypress/bp-core/bp-core-filters.php: * @see wp_title() ../plugins/buddypress/bp-core/bp-core-filters.php: * @see wp_title() ../plugins/buddypress/bp-core/bp-core-filters.php: * Filters the older 'wp_title' page title for BuddyPress pages. ../plugins/buddypress/bp-core/bp-core-filters.php:add_filter( 'wp_title', 'bp_modify_page_title', 20, 3 ); ../plugins/buddypress/bp-core/deprecated/1.5.php: * @deprecated Use wp_title() ../plugins/buddypress/bp-core/deprecated/1.5.php: * Now, just simply use wp_title(). ../plugins/buddypress/bp-core/deprecated/1.5.php: * @deprecated Use wp_title() ../plugins/buddypress/bp-core/deprecated/1.5.php: _deprecated_function( __FUNCTION__, '1.5', 'wp_title()' ); ../plugins/buddypress/bp-core/deprecated/1.5.php: $title = wp_title( '|', false, 'right' ) . get_bloginfo( 'name', 'display' ); ../plugins/buddypress/bp-themes/bp-default/header.php: <title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title> ../plugins/buddypress/bp-themes/bp-default/archive.php: <h3 class="pagetitle"><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3>I guess this means I can and should hook in to the older (deprecated)
wp_title()function? I’m a bit new to BuddyPress and WordPress, so maybe I’m missing something obvious, or barking up the wrong tree here…. -
AuthorSearch Results