Search Results for 'buddypress'
-
AuthorSearch Results
-
August 5, 2016 at 1:06 pm #257272
In reply to: Activation email
wadece1979
ParticipantIt is not going to their spam either…. Just not emails going out. I notice the weird two Pending list when i go to the users page which I do believe is the reason.
Now I am just unsure why it would be showing two.. If I deactive the bbpress plugin things go back to one pending list and all work’s ok.
Once I reactive Buddypress. Things stop working as JT first described
August 5, 2016 at 1:04 pm #257271In reply to: Activation email
wadece1979
ParticipantI have the same issue … using the latest bbpress 2.6.2 along with latest wp install and using GameDayTheme.
Having issues with pending users list……
I am currently using the GameDay theme and after installing buddypress I now have two pending lists when I go to my users. this is causing issues with my registration process. I tried switching themese and still have pending link show up twice.
I have attached a screenshot here.

I also have deactived all other plugins except buddy press.
Can anyone help point me in the right direction as to what would be the cause here ?
Many thanks in advance
August 5, 2016 at 12:15 pm #257267In reply to: BuddyPress 2.6.2 is now available
wadece1979
ParticipantFYI i am using the lastest wp and 2.62 buddypress
August 5, 2016 at 11:53 am #257266In reply to: BuddyPress 2.6.2 is now available
wadece1979
ParticipantHaving issues with pending users list……
I am currently using the GameDay theme and after installing buddypress I now have two pending lists when I go to my users. this is causing issues with my registration process. I tried switching themese and still have pending link show up twice.
I have attached a screenshot here.

I also have deactived all other plugins except buddy press.
Can anyone help point me in the right direction as to what would be the cause here ?
Many thanks in advance
August 4, 2016 at 3:52 pm #257251In reply to: Using WP ALL IMPORT PRO with BuddyPress
wescravn
ParticipantDO you know any import plugin for free that supports buddypress?
August 4, 2016 at 3:50 pm #257250In reply to: Using WP ALL IMPORT PRO with BuddyPress
Paul Wong-Gibbs
KeymasterUnless they have an add-on to support BuddyPress, you’re out of luck (unless you write one yourself).
August 4, 2016 at 1:57 am #257225In reply to: Update custom table field when posting activity
coffeywebdev
ParticipantYou could hook into the
bp_activity_addaction like this:function bp_plugin_hook_activity_add( $activity ) { // insert code to be executed when activity is created // read the link below for more code examples } add_action( 'bp_activity_add', 'bp_plugin_hook_activity_add', 10, 1 );You can access the activity variables like this:
$activity[‘type’] or $activity[‘content’]
you should be able to use any of the keys below:
id
action
content
component
type
primary_link
user_id
item_id
secondary_item_id
recorded_time
hide_sitewide
is_spamFor more reading check out this link:
August 3, 2016 at 11:27 pm #257222In reply to: Conflicts with BuddyPress and Pemanent Links
mrjarbenne
ParticipantAs you have established that this is a WordPress issue, and not a BuddyPress one, you might be better to create a ticket over on wordpress.org, where there are more eyes looking at your ticket.
August 3, 2016 at 8:01 pm #257215In reply to: [Resolved] Check if on profile of an admin?
mrjarbenne
ParticipantYou could use something like this to add a badge to admin/verified users.
August 3, 2016 at 7:22 pm #257210In reply to: Members default tab > Profile
mrjarbenne
ParticipantDid you try this code snippet from the BP codex: https://codex.buddypress.org/getting-started/guides/change-members-profile-landing-tab/
It does exactly what you are looking for.
August 3, 2016 at 5:10 pm #257202In reply to: Some profile tabs won’t translate
r-a-y
KeymasterThe
Notifications %sstring looks like it is available:
https://plugins.svn.wordpress.org/buddypress/tags/2.6.1.1/buddypress.potIf you’re using a custom translation from a previous version, you need to merge your language files together. Here’s a quick tutorial I found on Google:
http://www.marketpressthemes.com/blog/how-to-merge-two-po-files-using-poedit/You might also benefit from a translation that is already available here:
https://translate.wordpress.org/projects/wp-plugins/buddypressAugust 3, 2016 at 5:08 pm #257201In reply to: BuddyPress REST API Question
Anonymous User 14235950
InactiveNope, it’s Microsoft Dynamics CRM. With REST, shouldn’t it be possible to just add our CRM URL to a plugin and have it query that to find our members, then it does everything else automatically? It would be nice if BuddyPress added this functionality since REST seems like it’s the de facto standard for apps to communicate data to each other now. Custom solutions for each CRM type seem kind of backwards when REST is already a possibility.
August 3, 2016 at 5:00 pm #257200In reply to: BuddyPress REST API Question
r-a-y
KeymasterI see that BuddyPress has a REST API now that can access BuddyPress data from a URL.
BuddyPress is in its early stages of developing the REST API. It’s not close for production usage yet. Follow development here:
https://github.com/buddypress/BP-RESTIt would be great if I could just add a URL somewhere in the settings and have data get pulled in.
You will need to do some custom development here.
If your CRM is CiviCRM, there is a BuddyPress plugin that syncs with that. If your CRM is something else, you could take a look at the codebase and modify it to suit your needs:
https://github.com/christianwach/civicrm-wp-member-syncAugust 2, 2016 at 5:24 pm #257180In reply to: Conflicts with BuddyPress and Pemanent Links
r-a-y
KeymasterI don’t believe this is a BuddyPress issue. When you change your permalinks, are you able to visit a regular WP post permalink? If not, it’s a WordPress issue.
I would say make sure your server is able to write to the
.htaccessfile.Also, you might have to alter your
.htaccessfile to add the following to the top of the file:Options +FollowSymlinksAugust 2, 2016 at 7:06 am #257166buddycore
ParticipantI’m sorry,
groups_is_user_admin()is the wrong function, you need something more like thiscurrent_user_can('editor') || current_user_can('administrator'). That needs to be wrapped in an IF statement.You would put that in
your-theme/buddypress/activity/post-form.php.August 1, 2016 at 10:16 pm #257161In reply to: How to create new tabs in Groups?
shanebp
ModeratorUse the Group Extension API. Bit of a learning curve, but powerful once you get it.
August 1, 2016 at 10:57 am #257149buddycore
ParticipantThis is a similar problem https://buddypress.org/support/topic/how-to-stop-topic-creation-for-groups/
August 1, 2016 at 9:40 am #257146buddycore
ParticipantI believe this is the default functionality of a BuddyPress powered site.
Your theme may be hijacking this, I’d look in the theme files first for a template.
August 1, 2016 at 3:04 am #257144In reply to: how to add new members to groups automatically?
buddycore
ParticipantFirst you are creating a custom function called
automatic_group_membership()this takes one parameter$user_id.This function terminates if there is no
$user_idprovided, meaning you don’t run rogue code and your site is more optimised.When a
$user_idis present thegroups_accept_invite()function is run. This function is a BuddyPress core function you can find it inwp-content/plugins/buddypress/bp-groups/bp-groups-functions.phpon line 1400.It accepts two parameters a
$user_idand a$group_id. You need both in order to create the relationship.This function is “hooked” with
add_action()which is a WordPress core function. This functionadd_action()has many hooks available for various situations. You can read more about hooks here https://codex.wordpress.org/Plugin_API/Hooks.Essentially it’s an opportunity to run your own code against WordPress core, or in this case BuddyPress core. BuddyPress provides the hook and we use them to achieve cool things.
So the hook in this case is
bp_core_activated_userand the code we want to run when this hook is available would be the customer functionautomatic_group_membershipwhich is passed as a second parameter.I’m not sure where the
$user_idgets populated along the way here, nor the$group_idmaybe someone can help?Otherwise, I would do this not on activation but when a user has logged in for the first time.
Then we have access to
global $bpwhich contains aloggedin_user->idwhich can be used with this function and you could manually set the$group_idin bp-custom.phpJuly 30, 2016 at 3:28 am #257118etavio
ParticipantThank you for your thorough explanation and my apologies for the delayed response — while this method did get rid of the title, it is still not pulling content from the post editor. Basically, the whole goal behind this is so I can use a shortcode above the buddypress activity feed to insert a small slider. Furthermore, what would I have to add to that php snippet to pull in widgets as well?
Thanks again
July 29, 2016 at 1:43 pm #257113In reply to: Login Redirect
Earl_D
ParticipantDon’t know if it will work with your theme but you may want to look at the code snippets here
July 28, 2016 at 10:24 pm #257100In reply to: Unable to disable double-click on “Post Update”.
hidalgoantonio
ParticipantHi!
Found the culprit!
Like you said, it wasn’t Buddypress at all. It was the rtMedia plugin’s js file called “rtMedia.backbone.js” that had the on click function set to “false” for some reason. I changed that to “true” in row 756, and deleted this from rows 717-723:
//handling the "post update: button on activity page jQuery( '#aw-whats-new-submit' ).removeAttr( 'disabled' ); jQuery( document ).on( "blur", '#whats-new', function () { setTimeout( function () { jQuery( '#aw-whats-new-submit' ).removeAttr( 'disabled' ); }, 100 ); } );Just documenting this here in case other folks find their way to this through search engines.
Cheers!
July 28, 2016 at 9:49 pm #257099In reply to: [Resolved] Warning: reset() error message
Marcos Nobre
ParticipantHi, this started to happen to me with the latest buddypress update, I have a buddypress folder in my theme with my customizations, so I tried renaming that folder so it won’t be used, however the issue still occurs…
the php error is the following
[error] 10524#0: *41486276 FastCGI sent in stderr: “PHP message: PHP Warning: reset() expects parameter 1 to be array, boolean given in /var/www/website.com/wp-content/plugins/buddypress/bp-core/bp-core-template.php on line 3048” while reading response header from upstream, client: 74.130.56.345, server: website.com, request: “GET /members/meinhardt/media/604/ HTTP/1.1”, upstream: “fastcgi://unix:/var/run/php5-fpm.sock:”, host: “www.website.com”, referrer: “http://www.website.com/activity/“
July 28, 2016 at 4:52 pm #257095In reply to: Profile Search no working in mobile
juanandrius
ParticipantHi Henry Wright,
I solved my problem. i had to unclick this option:
“Only registered or approved members can view BuddyPress/bbPress pages (Private Network).”
and it was fine.
Thanks!!
July 28, 2016 at 11:41 am #257086In reply to: Change Registration Confirmation Text
thilina82
ParticipantOops sorry…. I found the error.
I have changed the wrong register.php
Earlier I have changed “/public_html/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php”
Changing the text in the following register.php solved the problem
“/public_html/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php“.
-
AuthorSearch Results