Search Results for 'buddypress'
-
AuthorSearch Results
-
April 25, 2011 at 10:00 am #110914
In reply to: Original index template replaced by Buddypress index
astromono
ParticipantNope, not on a child theme or the bp-default.
I’m running Buddypress on a multisite install with subdomains. My main domain is http://www.astromono.com and i have two other subdomains: comic.astromono.com (with comicpress) and saril.astromono.com (with buddypress). When I try to edit the theme that’s on the main domain, I go to Network Admin, look for the theme and then try to edit the main php template (index.php).
Before I installed Buddypress, I got access to the main php template just fine, but now when I try to edit it, I get the Buddypress main php template instead of the one that comes with my theme. This issue was happening before I installed and used the BP Template Pack in order to make my theme compatible with BP.
April 25, 2011 at 9:47 am #110912In reply to: Ajax New Topic Form & Filter by Tags
Menelik Seth
MemberI found something close with the default theme’s activity page. Still searching for the tags, though. I totally accidentally the buddypress theme
April 25, 2011 at 2:08 am #110905In reply to: Events Manager for BuddyPress
Marcus (aka @msykes)
Participantbtw, @boonebgorges I guess I should mention that it does now integrate with activity and notification too

I don’t have a calendar view atm, but the code is there already, its a case of adding the right options etc to get it showing instead of an events list.
April 25, 2011 at 2:04 am #110904In reply to: Events Manager for BuddyPress
Marcus (aka @msykes)
ParticipantIt’s been far longer than ever wanted, but EM now integrates with buddypress. You can now create/edit events, manage bookings, and create group events.
This is still a release candidate for EM 4.0 but it’s stable – http://wp-events-plugin.com/try-the-beta/
Looking forward to some feedback!
April 25, 2011 at 1:09 am #110902icypopsicle
MemberP.S, I don’t know why it duplicated the topic, I didn’t intentionally do it.
April 25, 2011 at 12:01 am #110900In reply to: Showing profile fields outside of profile
embergermedia
MemberThanks again for the answer. But I have the following problems:
The echo displays the group members user id for each member (the actual number) But the profile field that I am trying to display is showing that of the members page I am on, not the group members.I replaced :
‘user_id’ => bp_displayed_user_id()with:
‘user_id’ => bp_group_member_id()
So the output I get is such:
Group Members Name (correct per my use of the group member loop)
47 ( the bp_group_member_id) (this is the correct user id, but I don’t want that displayed)
Displayed users profile field (incorrect- this should be the profile field of the Group member in the list)Thanks!
April 24, 2011 at 11:24 pm #110896In reply to: Showing random group members
embergermedia
MemberWell, that is handful! I’m not sure where to even begin to combine the two types of loops. I’m willing to get my hands dirty with code, but need a hint as to how to get started. Any suggestions?
Thanks for the reply!
April 24, 2011 at 11:06 pm #110895In reply to: Date in profile is broken in latest BP release
Paul Wong-Gibbs
KeymasterHey, you’re right. This affects BuddyPress 1.2.x, it seems to work on our latest dev version.
April 24, 2011 at 10:18 pm #110889In reply to: how to have comment and replies collapse and expand.
Timothy Tarmon Jr
ParticipantYea, that’s what i mention before it has something to do with buddypress.
Ok well most of the easter stuff has passed, so ill try to work on a fix asap.and thanks alice.
April 24, 2011 at 8:57 pm #110887In reply to: how to have comment and replies collapse and expand.
Aliceembroid
ParticipantI see what is happening to your code. buddypress is changing it. How stranges.
April 24, 2011 at 7:22 pm #110880In reply to: Changing Group tab display defaults
Menelik Seth
Member@r-a-y Interesting to note, I’ve just tried the code, and it works. But for some reason, while it works flawlessly on my XAMPP box (Windows Vista), my MAMP box will not load any of the forums or forum posts… It just loads a blank page. I just hope it works on my live server…
EDIT: Works on my live server. So my MAMP must have something screwy with its settings. Ahh no big, it’s not my main work computer, yet…
April 24, 2011 at 6:24 pm #110877In reply to: Showing random group members
r-a-y
Keymasterbp-dev.org references an outdated version of BuddyPress.
There currently does not appear to be a random parameter for the group members loop.
One way around this is by using BP_Groups_Member::get_all_for_group() combined with a regular members loop.
With BP_Groups_Member::get_all_for_group() (available in /bp-groups/bp-groups-classes.php). Pass your group ID and it will return an array. One of the items in the array is the member IDs. You could then randomize the IDs yourself to a regular members loop:
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/Could also experiment with the `type` parameter with the “random” argument.
April 24, 2011 at 6:10 pm #110876In reply to: Showing profile fields outside of profile
r-a-y
KeymasterThis should give you some tips:
https://buddypress.org/community/groups/creating-extending/forum/topic/get-buddypress-profile-field-valueApril 24, 2011 at 6:02 pm #110872In reply to: how to have comment and replies collapse and expand.
Timothy Tarmon Jr
ParticipantHi @janismo , the typing mistake you mentioned was done by buddpress. because i did not include a space between the opening and closing tag it defaulted to a greater than entity, which is odd.
*edited
It’s still using an html entity at end of the script tag, i guess because there is a url within the script.Thank you for calling the load more button to my attention, I will have to add another jquery action if it is clicked upon, but It might be tomorrow because its easter sunday.
April 24, 2011 at 2:47 pm #110868msullens88
MemberThis is how I got the mentions in the profile activity feed.
Edit the file bp-activity-classes.php in the buddypress plugin folder.
`function get_filter_sql( $filter_array ) {
global $wpdb;if ( !empty( $filter_array ) ) {
$user_filter = explode( ‘,’, $filter_array );
$user_sql = ” ( a.user_id IN ( ” . $filter_array . ” ) “;
foreach ( $user_filter as $user_id ) {
$search_terms = ‘@’ . bp_core_get_username( $user_id ) . ‘<';
$user_sql .= “OR ( a.content LIKE ‘%%”.like_escape($search_terms).”%%’ ) “;
}
$user_sql .= ” ) “;
$filter_sql[] = $user_sql;
}`and replace this first top half of the function, No need to edit past the first “if” part of that function.
Hope this helps!
April 24, 2011 at 12:31 pm #110864In reply to: Arabic Group URLs
Menelik Seth
MemberApril 24, 2011 at 11:37 am #110862In reply to: how to have comment and replies collapse and expand.
James
Participanthi again @timothyjunior ,
– in your updated code for header.php you have typing mistake on the end of the 2nd line (closing script tag)
– comments/replies of all the activities that go after load more button is pressed are already revealed/expanded and cannot be hidden. Is here any quick fix, or this is exactly what you wanted to achieve?thanks!
April 24, 2011 at 11:30 am #110861In reply to: All Old Topics in the Forum Page is Gone
@mikey3d
Participant@djpaul, are you saying if I changed BP > General Settings or WP > Settings – it will break or corrupt the database because it‘s the fault of the software? Can you be more specific?
April 24, 2011 at 10:58 am #110859In reply to: All Old Topics in the Forum Page is Gone
@mikey3d
ParticipantCan the plugin break the database? I only have gut instinct I’m not sure it maybe BP Unread Posts that I have try one day then deactivate then delete it was a few months ago.
April 24, 2011 at 10:54 am #110858In reply to: Arabic Group URLs
Paul Wong-Gibbs
KeymasterIf you could report this as a bug on http://trac.buddypress.org using your username and password from this site, and provide some sample text we can
Copy and Paste in, I’ll take a lookApril 24, 2011 at 8:10 am #110855Brandon Allen
ParticipantOne option is to do as @embergermedia stated. To catch everyone, you could hook in a profile edit action and check to see if all the fields you require have been completed. If they have, then you could add something in their usermeta saying they’ve completed everything. Then you could hook into bp_init, check that usermeta field, and if you don’t get the correct response, then you can redirect them to their profile, or display an error telling them they need to complete their profile. However, as both @embergermedia and @brooker said, it wouldn’t be the most user friendly way to go.
April 24, 2011 at 6:54 am #110854embergermedia
Member@philsquires I agree with @Brooker Might not be the best idea. However, here is a possible solution:
Make every filed of the profile “Required”. I believe this is will not allow new users through until they are filled in. This will have no effect on current users though, Not until they visit their edit profile screen, anyway.Good luck!
April 24, 2011 at 6:49 am #110853In reply to: Hidden group posts visible to all
embergermedia
Member@kenrichman Hey, sorry, I have yet to look into this. I’ve been so busy with getting everything else my client wants working to work that this got put to the bottom of my list. Hopefully I will remember to re visit it before I get a complaint! If I get hnla’a idea working, I will post here how I did it.
Peace
April 24, 2011 at 3:56 am #110849In reply to: Groups to join group category?
Chuscastilla
Member@elliot-s This bp-group-hierarchy works for my purposes, but I’ve problems with almost every new plugin I add.
I’m not sure, because I still have to try myself, but maybe this one can help: Blog Categories For Groups:April 24, 2011 at 2:09 am #110846In reply to: All Old Topics in the Forum Page is Gone
@mikey3d
Participant@r-a-y @djpaul Here’s what happens:
Mikey3D wrote:
Hi,
I just saw your new (hosting name) layout but something is missed in my database. Here’s the problem:
There are no older topics.
I did not post at buddypress yet because after I saw Paul Gibbs posted. This below will be post after you.
=====================================================
“The DB table is “wp_bb_posts”. If there are posts in that table, then that’s good! You could then try repairing the database table.”Yes, there are posts in that table wp_bb_posts. I just did repair this wp_bb_posts table.
“Could also be a plugin conflict. If you’re running any caching plugins, try flushing the cache, or disabling the plugin.”
I disabled W3TC and all plugins except BuddyPress. Also empties the bp-custom.php and functions.php.
All that it’s still the same problem. Huh? Why?
======================================================John S. wrote:
> Hi,
>
> I just saw your new (hosting name) layout but something is missed in my database. Here’s the problem:When we changed the control panel over we did nothing to the MySQL installs on our machines. Just the front-end has changed, so it could not have affected your database.
That being said we would have no info based on what you provided on why you would be having that issue.
We have backups of the site and database on file for the past 10 days, if you would like to check against them.
Please let us know if you have any more questions.Mikey3D wrote:
>>>We have backups of the site and database on file for the past 10 days, if you would like to check against them.
Please I would like to have backup database for 10 days old ago. If the backup database still have the same problem. I may do, how would I give buddypress folk the permission to go into my site?
Ryan S. wrote:
Hello,
> Please I would like to have backup database for 10 days old ago.
Alright, we have restored the database backup from 10 days ago.
> If the backup database still have the same problem. I may do, how would I give buddypress folk the permission to go into my site?
We don’t know. There may not be a way. As we said, we have not made any changes to your database, and if the problem happened more than 10 days ago (but you only noticed it recently), then the oldest backup will have the same problem. In this case, you may need to restore from an even older backup that you have made yourself, and forfeit all additions since that point.
Mikey3D wrote:
WOW!!!! It works.
John, can you tell me why buddypress folks are right? It’s database. I spend a half a day to figure it out why there was no older post. Why is it, John?
Ryan S. wrote:
> Can you tell me why buddypress folks are right? It’s database. I spend a half a day to figure it out why there was no older post.
The Buddypress folks are not right.
They said it’s a host problem. But it’s not a host problem.
Yes, we have database backups, so we helped you to restore an older backup. But the problem was caused by your application. The application broke the database. Restoring the database backup fixed the problem.
In the future, you should also keep your own database backups, too.
Hope that helps!
================================
Have I been misleading?Mikey3D
-
AuthorSearch Results