Search Results for 'buddypress'
-
AuthorSearch Results
-
April 23, 2010 at 7:43 pm #74918
In reply to: Badge Maker
gregfielding
ParticipantOne more suggestion….
Is it possible to remove the Buddypress Badge Start and Buddypress Badge End from the code?
Those parts actually end up displaying above and below the badge on some other websites I’ve tried to past the badge on.
April 23, 2010 at 7:03 pm #74916In reply to: [Resolved] CubePoints and BuddyPress Intregration?
Tosh
ParticipantThanks I added that admin code. Not sure if I understand how to make my Plugin BP-aware.
Is this correct? I tried this and it still works, so ..? lol Am I good? My plugin is only 1 file other than the readme.txt
// BuddyPress aware
function cubepointsbp() {
my ninja code here
}
if ( defined( 'BP_VERSION' ) )
cubepointsbp();
else
add_action( 'bp_init', 'cubepointsbp' );
// END BuddyPress awareApril 23, 2010 at 6:52 pm #74914In reply to: [Resolved] CubePoints and BuddyPress Intregration?
r-a-y
Keymasterglobal $bp;
if ( !$bp->loggedin_user->is_site_admin )
return false;This goes above the function_exists call.
Just an FYI, make sure that your plugin is BP-aware:
https://codex.buddypress.org/how-to-guides/make-your-plugin-buddypress-aware-v1-2/
April 23, 2010 at 6:44 pm #74913In reply to: [Resolved] CubePoints and BuddyPress Intregration?
Tosh
Participantmm, that’s a question to ask the makers of the CubePoints plugin. I’m just extending it’s use to BuddyPress right now.
April 23, 2010 at 6:44 pm #74912hotforwords
ParticipantThanks everyone for the responses! Now I have a better understanding of how the different components work together!
In order to keep the stickiness of people coming back to my website when someone replies to a comment of theirs on the WordPress Post side.. I reactivated my Comment Reply Notification plugin for WordPress so now people get notified by the BuddyPress stuff as well as the WordPress Stuff!!
Just as a side note, my website has over 168,000 comments on it and I attribute that to my use of the comment reply notification plugin that I’ve used for the past couple years. Glad to see that BuddyPress has those notifications built in!
I’ll most likely add the Forum Reply Plugin that you mention r-a-y as well. Thanks for the useful post! And thank you all for your help!
Next up.. getting my BBpress skinned to look like my site and getting that darned BuddyBar to work
April 23, 2010 at 6:39 pm #74911In reply to: [Resolved] CubePoints and BuddyPress Intregration?
gregfielding
ParticipantAny thoughts on how this could work with MU?
April 23, 2010 at 6:37 pm #74910In reply to: [Resolved] CubePoints and BuddyPress Intregration?
Tosh
ParticipantRight now “Cubepoints Buddypress Integration” until I can think of a better name.
April 23, 2010 at 6:14 pm #74907In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantI’ve made it so that my assets get put into a folder called files and it has the 777 permissions.
PHP Version 5.1.6
April 23, 2010 at 5:42 pm #74901In reply to: [Resolved] CubePoints and BuddyPress Intregration?
armandmorin
ParticipantWhat is are you calling this?
April 23, 2010 at 5:32 pm #74899Boone Gorges
KeymasterJust to clarify what @r-a-y said: “Activity replies” are handled by BuddyPress, and are sometimes called “comments”. That’s probably where the confusion is arising. If you think of comments as a blog-only phenomenon, then BP doesn’t do any comment notification at all. You do, however, get BP notifications if someone replies to (or “comments on”) one of your activity items.
April 23, 2010 at 5:27 pm #74897r-a-y
KeymasterWhat Boone said.
Blog-related stuff is handled by WordPress.
Activity replies are handled internally by BuddyPress.
I would recommend what glamgrif mentioned and that is to disable the activity stream for blog comments and forum posts because the activity stream and blog comments / forum posts are independent from one another.
https://buddypress.org/forums/topic/faq-how-to-code-snippets-and-solutions#post-37843
You could try replacing blog comments with the activity stream:
https://wordpress.org/extend/plugins/buddypress-activity-as-blog-comments/
For forum replies, you could use a BuddyPress plugin:
https://wordpress.org/extend/plugins/buddypress-group-activity-stream-subscription/
April 23, 2010 at 5:17 pm #74896hotforwords
ParticipantBoone, that answers my question I believe.. BuddyPress will NOT email you if someone posts a comment reply on the WORDPRESS side.
Then why is the option on BuddyPress called “A member replies to an update or <b>comment</b> you’ve posted”?
Are the “comments” in BuddyPress somewhere? Are those posts in the Forum considered “comments”?
Thanks Boone!
D Cartwright, how is my show considered NSFW? I have over 300 million views on YouTube and they wouldn’t allow my show if it was not safe for work!
Thanks glamgrif! As Boone said above, I think the WordPress side comments don’t get email notifications from BuddyPress.. or is that not correct?
April 23, 2010 at 4:42 pm #74894In reply to: Avatar Upload Issues
Mike Henderson
ParticipantI’m getting the right url path thanks to Chads post. Still getting a error when trying to upload a group avatar and a member avatar. Another tester was able to upload on a windows machine. Here is the error:
Catchable fatal error: Object of class WP_Error could not be converted to string in /var/www/wp-content/plugins/buddypress/bp-core/bp-core-avatars.php on line 281
WP 3.0-beta
-Multisite upgraded from MU 2.9.2
-using subdirectorys
BP 1.2.3
-installed on secondary blog
-modified the
bp_core_avatar_upload_path()to use upload_url_path-modified htaccess
RewriteRule ^files/(.+) wp-includes/ms-files.php?file=$1 [L]April 23, 2010 at 4:26 pm #74893In reply to: Creating sub social network / nings
Boone Gorges
KeymasterI mean it’s not possible to have totally separate BP networks running on separate subdomains but using the same installation of BuddyPress.
If you take my suggestion, you can make groups either Private or Hidden. If a group is private, the only people who are able to read or contribute to the group are those who have either had a membership request accepted, or those who have been invited. Hidden groups are the same, but they don’t show up in group directories, and thus it’s impossible to request membership to them – you can only join by being invited.
In this way, the activity that happens in a hidden group is only viewable by members of that group. Users of the site, however, could be members of multiple groups, and could interact with each other outside of those groups, through the profile pages and private messaging (assuming that you enable these features). From my point of view, this is the best of both worlds.
April 23, 2010 at 4:24 pm #74892In reply to: BuddyPress Like
dwkeys
MemberIs there a way to get the “User likes Users activity” to show up under their post like a reply?
Thanks!
April 23, 2010 at 3:45 pm #74890In reply to: Creating sub social network / nings
Boone Gorges
KeymasterUnfortunately, what you’re looking for isn’t really possible at the moment. The idea (of has been called “BuddyPress MU”) has been thrown around in these forums in the past, but to the best of my knowledge it hasn’t been put on a roadmap.
You could probably achieve most of the same result by using groups, and thinking of each group as its own “network” or “ning”. In a way, this is preferable to having multiple separated networks, as it allows users to have activity from all of their networks/groups in a single place. The only real downside to this is that you can’t offer the kind of theme customization for individual groups as would be possible if the networks were separate.
April 23, 2010 at 2:37 pm #74881Ipstenu (Mika Epstein)
ParticipantThere is almost no reason to use an external bbPress; Groups (and their forums) are very powerful and can be skinned to match your requirements. The upcoming design of THIS website should open some people’s eyes.
I tend to agree except that I want a way to have an ‘open’ forum as well as group forums
You know? A way for people to put up support questions without having to join a group. Unless there’s a way to make a group that anyone can post in, member or not, it’s a bit of a sticking point.
April 23, 2010 at 2:25 pm #74880In reply to: [Resolved] CubePoints and BuddyPress Intregration?
José M. Villar
ParticipantGo Tosh, go !!!
April 23, 2010 at 2:18 pm #74878In reply to: [Resolved] CubePoints and BuddyPress Intregration?
Tosh
ParticipantWill do! I’ll create a thread dedicated to it once it’s live. I also fixed it so when a admin deletes an activity they don’t get docked points
April 23, 2010 at 1:52 pm #74875In reply to: BuddyPress and WordPress 3.0
Ipstenu (Mika Epstein)
ParticipantWhat version of PHP? (I’m at the ‘let’s see what’s different between you and me!’ stage of things)
ETA: Are the permissions on your blogs.dir correct? I had to make the avatar folder and set permissions on that directly
April 23, 2010 at 1:00 pm #74867In reply to: Seo for Buddypress 1.0 beta
Sven Lehnert
ParticipantThanks for testing,
blog creation bug should be fixed in the 1.0.10 beta version
@dennis_h
I can not create this bug… which version has it been?
Thanks for all your help!
Please try to add the tags for your forum front page to the General Seo / Main Blog / MAIN BLOG HOME
If the $bp variable has all needed values, It should work.
That’s how I check, If forum special tags are available:
if(isset($bp->forums) && $bp->current_component == 'forums' || $bp->current_action == "forum")April 23, 2010 at 12:31 pm #74866In reply to: BuddyPress and WordPress 3.0
Chad Holden
ParticipantHi ipstenu, I’ve upgraded to the latest nightly, haven’t noticed much difference, and the avatars still don’t work.
I do have GD library 2.0.28 installed and >>
array(12) {
[“GD Version”]=>
string(27) “bundled (2.0.28 compatible)”
[“FreeType Support”]=>
bool(true)
[“FreeType Linkage”]=>
string(13) “with freetype”
[“T1Lib Support”]=>
bool(false)
[“GIF Read Support”]=>
bool(true)
[“GIF Create Support”]=>
bool(true)
[“JPG Support”]=>
bool(true)
[“PNG Support”]=>
bool(true)
[“WBMP Support”]=>
bool(true)
[“XPM Support”]=>
bool(false)
[“XBM Support”]=>
bool(true)
[“JIS-mapped Japanese Font Support”]=>
bool(false)
}
So that’s not the issue either. It doesn’t look like it’s getting to the actual thumbnail creation.
April 23, 2010 at 8:50 am #74850Arturo
ParticipantApril 23, 2010 at 8:18 am #74848In reply to: Badge Maker
lsddesign
ParticipantIf you get re-directed to the home page, copy the ”badge” folder from templates to your main skin.
If you use a child theme, upload the folder to: wp-content/plugins/buddypress/bp-themes/bp-default/ and it WILL work

cheers,
aron
April 23, 2010 at 8:08 am #74845Avatar
ParticipantBuddyPress Admin Notifications Plug-In.
.
-
AuthorSearch Results