Search Results for 'buddypress'
-
AuthorSearch Results
-
August 7, 2012 at 7:40 pm #138693
r-a-y
KeymasterI’m guessing you have a rogue code snippet that is overriding BuddyPress’ avatar code.
Check your theme’s functions.php file located at /wp-content/YOUR-THEME/functions.php also check /wp-content/plugins/bp-custom.php. Look for any code snippet that references avatars. Can you find any?
Also check any BuddyPress plugins you may have.
August 7, 2012 at 7:35 pm #138690In reply to: Group vs Forum and notifications
r-a-y
Keymastertestbp.org uses both the BuddyPress and the bbPress plugins.
bbPress has its own built-in forum subscription feature; BuddyPress does not have a group forum subscription feature built-in.
However, there is a BuddyPress plugin that enables members to subscribe to a group – BP Group Email Subscription:
https://wordpress.org/extend/plugins/buddypress-group-email-subscription/August 7, 2012 at 7:32 pm #138689In reply to: How do mentions work
r-a-y
Keymaster@mentions work the way you intended them to; they leave a notification in the WP Toolbar for the user and concurrently notifies the user via email.
If you want something more immediate and Facebook-like, use Brajesh Singh’s Live Notification plugin:
http://buddydev.com/uncategorized/introducing-buddypress-live-notification-plugin-a-facebook-like-notification-plugin-for-buddypress/Might need updating.
August 7, 2012 at 7:21 pm #138685In reply to: Strange field in the registration form?!
Paul Wong-Gibbs
KeymasterAfter much searching by @karmatosed and I, we’ve found it’s the https://wordpress.org/extend/plugins/wangguard/ plugin. You’ll need to contact the author for support.
August 7, 2012 at 7:20 pm #138684In reply to: Strange field in the registration form?!
bg
MemberBP Xtra Signup, Achievements, All in One SEO Pack, BackUpWordPress, BP User Profile Map, BuddyPress Album, BuddyPress Community Stats, and loads more, so I can’t really list all of them here. Do you think that some or one of the plugins could create this strange field in the registration form by itself?
August 7, 2012 at 7:20 pm #138683In reply to: What happened to our avatars?
r-a-y
Keymaster@james_loudon – I was just re-reading your post and I think I know what you are experiencing.
Login to the WP dashboard and navigate to “Settings > Discussion”.
Scroll down to “Default Avatar” and select the avatar you want to use for members that do not have an uploaded avatar.
August 7, 2012 at 7:06 pm #138679Norman
ParticipantI should add this only happens in the front-end.
Also in addition, it seems to be adding an extra space too:August 7, 2012 at 7:03 pm #138676ezcs
Participant@djpaul: If there’s anyone more “The Man” than you, I don’t know who he is.
THANKS A MILLION! I learned something new today. The renaming plugin folder worked.
August 7, 2012 at 6:53 pm #138673Paul Wong-Gibbs
Keymaster@kmtrent – you probably have some code in a plugin or a theme that assumes BuddyPress is always loaded. This isn’t always the case, and obviously causes problems like this.
@ezcs – if you read your error line, you see it is coming from from plugins/buddypress-like/. That plugin hasn’t been updated for almost two years. Which version of BuddyPress did you upgrade from? Regardless, go into your site via FTP (or however you normally upload files), go into plugins, and rename the “buddypress-like” folder into something else. This should let you log back in to your site, go to the plugins page and it should display a message about a “broken plugin”.
August 7, 2012 at 6:51 pm #138672In reply to: Customizing Status updates
modemlooper
ModeratorRead this topic if you want to add more fields to the status update. https://buddypress.org/community/groups/creating-extending/forum/topic/adding-a-second-element-for-posting-with-an-activity/?topic_page=1&num=15
But I think a better approach is to create a component.
August 7, 2012 at 5:33 pm #138665In reply to: How to add a profile link to navigation bar
charlietech
ParticipantIm using suffusion and buddypress
August 7, 2012 at 5:31 pm #138664ezcs
ParticipantOH MY GOD!! I got the same sort of error after the 1.6 update installation. I can’t do anything with the site now.
Fatal error: Call to undefined function is_site_admin() in /home/content/e/z/c/ezcs2009/html/wsnursing/wp-content/plugins/buddypress-like/bp-like.php on line 248
August 7, 2012 at 5:13 pm #138660In reply to: 404 pages on child pages in 1.6
r-a-y
Keymaster@rodtrent – Disable all 3rd-party plugins you are using except BuddyPress – this includes JetPack, BP Gallery, etc. Next, change your theme to the bp-default theme. Now, retry your BP pages. Does your problem still occur?
August 7, 2012 at 5:05 pm #138658r-a-y
Keymaster@notpoppy – For this line:
`if ( groups_get_groupmeta( $bp->groups->current_group->id, ‘settings_complete’ ) )`
You could probably change that to do your check against group ID
eg.
`if ( bp_get_group_id() == MY_GROUP_ID )
return true;
elseif ( bp_get_group_id() == ANOTHER_GROUP_ID )
return true;
else
return false;
`etc.
If you want to do your check by group name, try using `bp_get_group_name()` in place of `bp_get_group_id()`.
This is untested, but hopefully this gives you a few ideas to work with.
August 7, 2012 at 4:59 pm #138656In reply to: Membership Numbers differ since 1.6 update
r-a-y
Keymaster@bakelady – In BP 1.6, the member count behavior changed to reflect the active users on your site and not total members.
To revert this behavior, can you try this code snippet in /wp-content/plugins/bp-custom.php?
`add_filter( ‘bp_get_total_member_count’, ‘bp_core_get_total_member_count’ );`
If you don’t have a file located at /wp-content/plugins/bp-custom.php, follow the tutorial available here:
https://codex.buddypress.org/extending-buddypress/bp-custom-php/Let me know if this works for you.
August 7, 2012 at 4:54 pm #138655r-a-y
Keymaster@dacai – It sounds like these shortcodes rely on javascript to work.
There maybe a conflict between your plugin’s javascript, BuddyPress’ javascript and/or your theme’s javascript (assuming you are not using a variant of the bp-default theme).
I would try to find out the culprit by debugging the javascript with your browser’s developer tool.
If you’re using Firefox, try installing Firebug.
Here’s a video tutorial on how to use Firebug:
http://www.dev4press.com/2010/tutorials/wordpress/various/use-firebug-to-track-ajax-requests-and-responses/Once you have it installed, turn on the Firebug console and reload your page. If there are errors, the Firebug console will tell you which javascript files are failing.
August 7, 2012 at 4:42 pm #138653In reply to: What happened to our avatars?
r-a-y
KeymasterBy 2010 install, do you mean BuddyPress v1.2.x or older?
If so, you need to upgrade in stages.
Check out the “Upgrading BuddyPress” codex article for more details:
https://codex.buddypress.org/buddypress-site-administration/upgrading-buddypress/I should note this is an arduous task that will probably require a lot of troubleshooting and debugging.
As always, you should test this on a development server and not on your live site.
August 7, 2012 at 4:38 pm #138651In reply to: 404 pages on child pages in 1.6
rodtrent
Participant@r-a-y I’ll give it a shot, however, there are others posting here to the forums with the same issue as me — so it *can* be duplicated.
August 7, 2012 at 4:31 pm #138650In reply to: 404 pages on child pages in 1.6
r-a-y
Keymaster@k12onos – The .zip download for BP 1.5.7 can be found here:
https://downloads.wordpress.org/plugin/buddypress.1.5.7.zipDo not install this on top of BP 1.6. Please try duplicating your problem on a fresh install.
On my local testing on both BP 1.5.7 and BP 1.6, I was able to duplicate your problem. But I believe, the intention was that you shouldn’t nest a component page within a component page and you should follow the method I suggested by creating a “dummy page” as you say.
Let me know.
@rodtrent – I am unable to duplicate your problem. If you have a backup, I suggest reverting back to that and retry your upgrade by following these instructions:
August 7, 2012 at 4:20 pm #138649notpoppy
ParticipantOK it won’t let me post code at all for some reason. I’ve added the code described in Group Extension API under Advanced Usage.
August 7, 2012 at 4:17 pm #138648notpoppy
ParticipantI’ve tried to follow the instructions in Group Extension API on how to restrict the tab to certain pages. I believe I’ve integrated the code correctly but it seems I need to do something else to tell it which groups I want to restrict it to but I can’t tell what.
I’ve had difficult posting the code on here – I keep getting blank pages – but I’ll try to post it in subsequent posts.
I need to know what I should do in order to:
1. Restrict the tabs so they only appear in certain groups
2. Customise the content of the tabs so it’s different for each pageAugust 7, 2012 at 4:01 pm #138645In reply to: BP Registration Spam – again
Haraldo88
MemberThanks for this, guys.
@modemlooper: actual humans? Hmmm… never thought of that. Could be. I’ll just delete them case-by-case.
@gh0zt: Using FB… that’s an idea but I know that some of my users hate (and do not use) FB.
@4ella: I assumed spammers just rolled over their IPs continuously.
Will study and try these ideas. More welcome. THANKS!August 7, 2012 at 3:08 pm #138640In reply to: 404 pages on child pages in 1.6
k12onos
ParticipantThrow out the idea of having a page structure like this:
Activity Stream (parent)
– Members
– Groups
– ForumsInstead, use a ‘dummy’ page or whatever you call it as the parent page:
Dummy page (parent)
– Activity Stream
– Members
– Groups
– ForumsThe idea is to assign the dummy page with your desired base slug.
Though, you might notice that if you open the dummy page you’re left out with an empty page. Therefore if you want you can also redirect the dummy page to Activity Stream page so that the dummy page will be inaccessible.
At least at the moment, this is better than having to deal with the 404 pages right
August 7, 2012 at 2:57 pm #138639In reply to: Custom Theme Possibility
Tammie Lister
ModeratorI’d suggest you give BuddyPress 1.6 a whirl – it’s kind of similar to that mockup for the bar
http://testbp.org/August 7, 2012 at 2:35 pm #138638In reply to: Help with custom theme.
Tammie Lister
ModeratorIf it’s already a WordPress theme then you’re starting point probably would be the https://wordpress.org/extend/plugins/bp-template-pack/. If you follow a guide like this https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/ – that’s for Twenty Ten but can adapt.
-
AuthorSearch Results