Search Results for 'buddypress'
-
Search Results
-
hi
can anyone recommend anything similar to the s2member plugin that isn’t full of bugs ?
since i installed this terrible plugin i’ve had nothing but problems with verification emails not going out, people unable to login even after being verified, sections of the site being “member protected” despite me not setting them as so and even something as simple as the welcome page after login just going to random posts!sorry if someone here designed it but from my experience of it, it’s truly awful and their help forum only backs up my feelings, it’s full of people having problems.
all i need is something to enable privacy on buddypress so only members can see activity and a way to protect certain posts for members only. has anyone used anything that works with buddypress?
sorry for the negative post but i’ve wasted almost 6 hours on this tonight.
I have an issue with new user activation link. I have WP 3.2.1 Sub-domains Multisite and BP 1.5.
BP is running on a sub-domain, and there are 5 other sub-domains.When a new user registers on primary site, he receives activation email and the link is pointing to BP blog,
I believe it should be “http://domain.com/wp-activate.php?key=xxx” but it is “http://sub-domain.domain.com/wp-activate.php?key=xxxx”where sub-domain is buddypress site.
Please suggest how to correct this, activation link should point to main domain only.
Stumbled across a pretty nasty bug recently while setting up a BP site for a client.
Was using the bp_has_forum_topics() loop with an array of arguments in order to display a list of topics that shared a specific tag. Unfortunately, despite the fact that ‘per_page’ & ‘max’ were set to 8, and there were multiple topics that matched the criteria, only 1 topic was ever being returned.
Several hours of digging later…
It turns out that after it ran the first query properly (with type = ‘tags’ and search_terms equal to the tag in question), when BP would calculate how many more posts it needed to display (in the constructor of the BP_Forums_Template_Forum class), the code was fouling up. Eventually, after being passed around through a few functions and filters, it hits groups_total_forum_topic_count(), which does not accept parameters for $type.
This means that when the query reaches get_global_topic_count() (where the actual SQL is constructed), $search_terms is intact, but $type is not. This changes the query from searching for topics with $search_terms in the tags to one searching for topics with $search_terms in the title. This is confirmed by the fact that when the function checks for the presence of $search_terms, it adds an additional ” AND ( t.topic_title LIKE ‘%{$st}%’ )”
I was able to restore tag-searching functionality by adding an additional optional argument to the groups_total_forum_topic_count() and get_global_topic_count() functions for $type.
That, and a complicated SQL query one of my talented co-workers helped me write, set everything aright.
That section of the function went from this:
`if ( $search_terms ) {
$st = like_escape( $search_terms );
$sql .= ” AND ( t.topic_title LIKE ‘%{$st}%’ )”;
}`to this:
`if ( $search_terms ) {
$st = like_escape( $search_terms );
if($type == ‘tags’)
{
$sql .= “AND (t.topic_id
IN (
SELECT tr.object_id
FROM `wp_bb_term_relationships` tr
INNER JOIN `wp_bb_term_taxonomy` tt ON tt.term_taxonomy_id = tr.term_taxonomy_id
INNER JOIN `wp_bb_terms` t ON t.term_id = tt.term_id
WHERE t.name LIKE ‘%{$st}%’))”;
}else
{
$sql .= ” AND ( t.topic_title LIKE ‘%{$st}%’ )”;
}
}`This is from bp-groups-classes.php (around line 640) – BuddyPress v1.5.1
Sorry if this is the wrong place for this. I’m a developer with plenty of WP experience, but I’m rather new to the BP side of things.
Anyway, this seemed like a pretty big gap in the BP core functionality – a core loop function was, eventually, losing part of its specific context and returning bad data. If this was by design, I’d be interested in knowing why… BP is a pretty huge codebase, and its hard to grasp the entirety of its scope from my limited interactions with it.
Anyway, a big thanks to the whole BP team for creating such a robust plugin. Here’s to never stopping the chase for perfection.
awesome plugin!
How do I:
1) Restrict membership to buddypress (Admin to approve sign ups) and have all member content private from guest viewing?
2) Have a guest area – eg. home page of wordpress to be accessible for guests?
I appreciate your help!
When viewing any of my BP group forums, the list of Forum Topics is followed by a “Post Topic” button. Clicking this button does not post a topic, but produces an error message “Please provide a title for your forum topic.”.
When you click the “New Topic” button, a form appears to allow you to enter all the topic info, and then the same Post Topic button appears at the bottom to post the form. I’m not sure why the button is appearing before the form is activated.
Is this a bug? Has anyone else run into this problem and found a fix?
WordPress 3.2.1. – BuddyPress Version 1.5.1 – Theme: Frisco for BuddyPress 1.5.04
ps – I tried digging through the forum help pages here for similar, but without a search box, it’s impossible to find out if someone else has had the same problem.
I am working with some legacy code for a buddypress site. I have read that by deafult you should be able to send messages to any user, tho the project I am working on only allows you to send messages to a ‘friend’ is there a simple fix for this? Of if not could someone give me a list of files to look at (maybe I can fill them up with deafult buddypress code)
Kind thanks to anyone who can help!
Hello all,
We would are running a blog named medicalcooking.nl with quality content (control, curated). We would like to add a zone with communityfeatures with BuddyPress in a ‘subsite’. So people can engage without disturbing the main blog.
With bbpress this is possible, because when people sign up from the main blog they do so as a forum member. Is this possible too with BuddyPress?
Met vriendelijke groet,
MarcoTopic: Double Posting In Group
I have installed BuddyPress and bbPress 2.0.2 on my WP site. However, in the groups area, any time I post, or leave a comment to a post, a duplicate post is added to the group. Additionally, I receive 2 email notifications, 1 for each duplicate post. Can anyone help me fix this problem? Thanks! – James
