Search Results for 'buddypress'
-
AuthorSearch Results
-
February 25, 2010 at 12:42 pm #65500
In reply to: External and Group use of bbPress
Xevo
ParticipantJust install buddypress with group forums and install bbpress seperate, with intergration offcourse.
There’s nothing wrong with that.
xspringe
Participant@Andy But from a usability point of view this is very confusing. Some activity streams do allow you to post into them and some don’t. One method of posting into a user activity stream is allowed (replies) but another (leaving a direct comment) isn’t. From a developer point of view this might feel logical due to the underlying structure, but from a user point of view it’s very confusing. A user is forced to jump through all sorts of hoops just to be able to interact with a friend.
I don’t think it would be confusing for the user at all to allow their friends to post into their activity stream. They are, after all, already able to do this by replying to an activity. Allowing users to directly post into their friends activity stream would merely add consistency to the user interaction. It’s precisely how Facebook works and they seem to get along just fine.
On the other hand, the fact that in order to see a comment on your own profile you have to browse to someone else’s profile does feel very confusing, because it all of a sudden injects twitter style functionality into a specific subset of the buddypress user interaction which otherwise is more consistent with how the majority of other social networking sites work.
February 25, 2010 at 12:27 pm #65497In reply to: External and Group use of bbPress
Ashish Kumar (Ashfame)
ParticipantYou can certainly have a standalone install of bbPress along with BuddyPress and then integrate it with the site to give user table sharing and login sync.
But I would suggest to check how BuddyPress is going to handle this issue at a later date so that if you want to import it back to single system then you can because BuddyPress might support it then.
February 25, 2010 at 12:26 pm #65496Windhamdavid
Participant<?php if(!is_user_logged_in()){nocache_headers();
header("HTTP/1.1 302 Moved Temporarily");
header('Location: ' . get_settings('siteurl') . '/wp-signup.php?redirect_to=' . urlencode($_SERVER['REQUEST_URI']));
header("Status: 302 Moved Temporarily");
exit();
} ?>
this quick hack (in the top of header.php) will only registered and logged in users can view. As for using it with version 1.2 default theme ~ I would suggest making a custom header for any of the buddypress elements you want to keep private and keep the rest public. At least until privacy functions are available as a plugin or in core.
February 25, 2010 at 12:14 pm #65493andrew_s1
Participantwp2.9.2 here too. Very strange. I tried disabling all other plugins apart from buddypress and bp-lockdown, with the same result.
February 25, 2010 at 12:00 pm #65487In reply to: Directories and activity just for login users
Andy Peatling
KeymasterFebruary 25, 2010 at 11:40 am #65482In reply to: Upgrading from 1.2 to 1.2.1
Hugo Ashmore
ParticipantYou keep bp-custom.php within your BuddyPress plugin directory? I have mine in the root of /wp-content/plugins/
February 25, 2010 at 11:30 am #65478In reply to: siteurl vs. home – getting the blog domain
ousep
ParticipantThis is a problem with regular WP, though. (WP 2.9.2 + BP 1.2.1)
On shifting my WP files from the parent directory (example.com) to a separate WP directory (example.com/wp/), Buddypress URLs contain a /wp/ in them, by default.
For instance, the admin profile url is example.com/wp/members/admin. Manually typing in example.com/members/admin will get you to the same page, without any errors, but all inks generated by BP contain /wp in them.
February 25, 2010 at 11:18 am #65474In reply to: Convert a WordPress Theme to a BuddyPress Theme
bnt76
ParticipantI actually found this quite difficult and still cannot convert a theme! Damn by technical capabilities.
February 25, 2010 at 11:12 am #65473kespers
MemberIts a bug reported at : https://trac.buddypress.org/ticket/2046
February 25, 2010 at 10:49 am #65472In reply to: Easy change of activity-design
Andy Peatling
KeymasterI love these posts. So random. Build a child theme and change it to whatever your heart desires:
https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
February 25, 2010 at 10:38 am #65468Andy Peatling
KeymasterI would say privacy is probably the most complex feature to implement – as far away from simple as you can get.
If you want to just close off your site to users who are not logged in, then there are plenty of plugins you can use. Or you can just use the following code in your plugins directory, smartypants:
<?php
/*
Plugin Name: BuddyPress Lockdown
Plugin URI: https://buddypress.org/
Description: Lock down your BuddyPress site if a user is not logged in.
Author: Andy Peatling
Version: 1.0
Author URI: https://buddypress.org/
Site Wide Only: true
*/
function bp_lockdown() {
global $bp;
if ( BP_REGISTER_SLUG != $bp->current_component && 'wp-login.php' != $bp->current_component && !is_user_logged_in() )
bp_core_redirect( site_url( 'wp-login.php' ) );
}
add_action( 'bp_init', 'bp_lockdown' );
?>February 25, 2010 at 9:37 am #65463In reply to: Convert a WordPress Theme to a BuddyPress Theme
andrew_s1
ParticipantUpdate again: the full answer is now here – https://wordpress.org/extend/plugins/bp-template-pack/
February 25, 2010 at 9:35 am #65462andrew_s1
ParticipantYou could always just use htpasswd to compel http authentication too. It’s a bit of a pain for users to have to log in to both the directory, and into buddypress, but it will give you the protection you need. Or you could just stick something into the theme to say that if the user isn’t logged in, they’re always redirected to the login / register page. I need something similar, so if I make any progress, I’ll post back here with it.
February 25, 2010 at 9:06 am #65458In reply to: BuddyPress Like
21cdb
ParticipantThis sounds really intersting! I haven’t checked ur plugin yet, but i’ll definitely do so in the next few days.
I have one idea for a future version: A directory that shows the Items with most likes (6hours, Today, Week, Year)
I believe this would help people to filter through most important news on a crowded network.
February 25, 2010 at 8:20 am #65456In reply to: Registration link redirects to home page
Meerblickzimmer
ParticipantWell, i get the same trouble and it looks like i get it after update to the last buddypress-version.
/register/ redirect to the homepage. I use wpmu – latest version. Anyone how knows a solution? Thanks for help! M
February 25, 2010 at 7:52 am #65454In reply to: Can't Install Buddy Press
r-a-y
KeymasterYou could try the performance tips listed here:
https://codex.buddypress.org/getting-started/improving-performance/
February 25, 2010 at 7:21 am #65448In reply to: media attachments…
Paul Wong-Gibbs
KeymasterDon’t know about image posting in activity stream but FYI you can use this for video https://wordpress.org/extend/plugins/oembed-for-buddypress/
February 25, 2010 at 7:16 am #65445Paul Wong-Gibbs
KeymasterWith all due respect:
This would seem to me to not only be a critical aspect of any social network, but also a rather simple one to implement. Then again, I’m no coder.
Obviously this feature is coming, but it hasn’t happened yet.
For 1.2, Jeff Sayre is updating his privacy plugin http://jeffsayre.com/2009/12/05/buddypress-privacy-component-released/. That’s one solution on its way. Otherwise, you can implement a lot of “stop people seeing this” in child themes.
February 25, 2010 at 7:04 am #65444In reply to: How to enable registration on single WP?
Thomas Opp
ParticipantIs there any way to enable the activations mails in a Single WP like in MU?
It seems to me BuddyPress supports activation only in WordPress MU.
February 25, 2010 at 6:54 am #65443In reply to: using groups here on buddypress.org?
zageek
ParticipantOK thanks I will wait till then.
February 25, 2010 at 6:51 am #65442In reply to: SPAM Domains to add to your block list
zageek
ParticipantThanks Andrea I didnt even realise that other users could add new users, because I was also wondering how they were spamming me even after I disabled registrations.
I feel kind of sorry for the spammers, because if we all put our heads together they won’t have anymore sites left to spam. I still wonder why they are attacking buddypress, is it to drive users to other platforms? Enemys of Buddypress?
So far I have built a list of domains, most of them are .info or .co.cc in otherwords free domains and of course some .com domains. They get clever and get a user to sign up with gmail every now and then to trick me. So i just ban the Gmail users and send them an email from my personal account asking them who they are if they look legitamate. Luckily for me I am in South Africa and its easy to spot non South African “culture” in terms of the types of names and usernames of members.
I have also checked where the IP addresses come from and most are coming from the United States ( do they use proxy servers and could the be from elsewhere in the world) Some IP addresses are also from Sweden.
Btw, I was also angry and blamed the devs for this problem but the more I devote time to looking at the more I am starting to realise that no matter what BP devs do the spammers always try new things and if the devs had to devote lots of time to fighting spam all the time they would never have a chance to improve buddypress and sort out bugs that come along. And if they didnt sort out the issues we would be even more upset.
So I think the fight against spam is in our hands the users, it will also help us learn more about being better webmasters. Its also the least we could do to help give back something in exchange for a product that we are getting for free and that could quite easily be charged for. We need to stop expecting things for free and in our laps and learn to be greatful for what the developers of open source software are putting in and giving away for free.
February 25, 2010 at 6:43 am #65441In reply to: BuddyPress Like
PH (porsche)
Participantn i c e !!!
February 25, 2010 at 5:10 am #65437In reply to: BuddyPress Like
rbl
Participant@Hempsworth: first of all, great job! The plugin is amazing! Thanks for sharing!
I have 1 feature request: I would like to be able to choose what activities the members are allowed to like. For example: they can only like forum posts and group creations.
Regarding limiting the likers to just friends, as long as you make it an option, I bet there’s a lot of people who might find that useful.
I definitely see 4 different usage scenarios for this:
1 – “open”: you can see the name of everyone who liked it;
2 – “mixed”: you can only see the names of your friends (” and x others” just like your example above);
3 – “closed”: you can only see numbers (total of people who like it)
4 – “private mode” (more a privacy setting than a real scenario): no one sees what you like except you.
Ricardo
February 25, 2010 at 3:39 am #65433In reply to: Wire is gone?!
xspringe
Participant@r-a-y Thanks for the clarification. Do you know why it was decided to implement it this way?
It feels very counter intuitive that you’re able to post replies into the user activity stream, but to post a direct message into the activity stream you have to use a completely different component (which is disabled by default) to have your message show up in the user activity stream in a roundabout way. And to add even more confusion, posting messages directly to the site wide activity stream conversely is possible without having to use any tricks.
I don’t mean to sound harsh, because I love buddypress and it’s an amazing piece of software, but it does feel like it’s a bit counter intuitive and inconsistent in this specific instance.
-
AuthorSearch Results