Search Results for 'buddypress'
-
AuthorSearch Results
-
paulhastings0
Participant+14
@Jeff: Can you give us an update on your funding?
http://jeffsayre.com/2010/01/02/do-you-support-buddypress-privacy/
Are we supposed to interpret the graph as $200 or so raised ?
February 22, 2010 at 7:17 am #64727In reply to: Creating NAV Bar
armandmorin
ParticipantI’m using a theme modified with the BuddyPress Template Pack.
I added the code you pasted above… thanks for that.
I got this error message.
Fatal error: Call to undefined function bp_dtheme_page_on_front()
February 22, 2010 at 6:24 am #64722designodyssey
ParticipantYou know we could use such a “dependencies” plugin for any or all plugins. Should be too hard to code for someone who understands the automatic update functionality
February 22, 2010 at 5:40 am #64719In reply to: Alternate Stylesheets for different sections
@mercime
Participant@Michaelmarian, For the Members subsection, easiest way is as Boone Gorges mentioned using body classes: e.g. Member’s Profile page use selector body.profile; Member’s Blog Page use selector body.my-blogs; Member’s Message Page use selector body.messages; etc.
However, if you still want to use conditional statements see
https://codex.buddypress.org/developer-docs/conditional-template-tags/
Thing is, locate_template array did not work for me in all the different incarnations of custom child themes I made before so this method might help you too
<?php
if (bp_is_profile_component()) {
include ('mystuff1.php');
}
elseif (bp_is_activity_component()) {
include ('mystuff2.php');
}
elseif (bp_is_friends_component()) {
include ('mystuff3.php');
}
else {
include ('mystuff4.php');
}
?>– For more specificity you could probably add – && bp_is_page(‘members’) – or whatever slug you used
– Add wp_reset_query(); right after the opening <?php if this query is placed latter part of the page or add the reset just before ?> if placed near top of the page.
February 22, 2010 at 3:49 am #64716In reply to: BP 1.2 Groups Functions ?
r-a-y
KeymasterTry installing the BP backward compatibility plugin if your old BP theme / plugins relied on BP 1.1.3 code:
https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/
February 22, 2010 at 3:47 am #64715r-a-y
KeymasterRead this post in the FAQ thread:
https://buddypress.org/forums/topic/faq-how-to-code-snippets-and-solutions#post-37123
February 22, 2010 at 3:45 am #64714In reply to: Ah.. WP, BBp, and Buddypress done!
r-a-y
KeymasterThe forums on GoFastBargains.com is using the internal forums component in BuddyPress. No integration is needed with anything else.
This is how it’s done:
1) Install WordPress
2) Install BuddyPress
3) Enable forums component in BuddyPress
4) Smile! You’re done!
February 22, 2010 at 3:37 am #64713In reply to: oEmbed for BuddyPress plugin – out now!
r-a-y
Keymaster@summerchilde – as stated above and in the readme.txt, the array_map() warning is a BP issue. It’s fixed in BP-trunk. The next release of BP 1.2.1, coming this week, will address this issue. If you can’t wait until then, you can patch the issue yourself (check out the “Known issues” section in the readme.txt).
@modemlooper – Sorry about the folder renaming! I know it’s a pain! The good news is oEmbed for BP v0.6 will fix the “rename folder” issue and will feature some performance enhancements (courtesy Andy P). Stay tuned for the next release which will come out when BP 1.2.1 drops.
February 22, 2010 at 3:26 am #64711In reply to: BuddyPress-Links 0.3 FINAL is here at last
PJ
ParticipantWhen sorting by “Most Popular” it doesn’t always sort in descending order.
Also, could the link categories be on individual lines? If one has more than 4 or so, or the words are long, they smush together in one or two rows and can get confusing.
February 22, 2010 at 3:12 am #64709In reply to: Nothing appearing under "My Blogs"
karto
MemberI have installed buddypress r2755 on a fresh WPMU 2.9.1.1 and it works. Could add new users and also new blogs with success. All are listed in the blog directory and the blog functions in the admin bar working, too. It seems that for fresh WMPU installations the problem is solved, now.
Thanks to Andy P.
Hopefully there will be also a fix for the upgraders.
February 22, 2010 at 2:54 am #64708In reply to: Ah.. WP, BBp, and Buddypress done!
myislamicblog
ParticipantHey!
Can you please write a little tutorial on how you did the integration? We would really appreciate it

Thank you in advance!
February 22, 2010 at 2:52 am #64707In reply to: new install, stupid question
gofastbargains
MemberI went ahead and created a new forum. I actually like the forum inside buddypress a lot better than just bbpress.
February 22, 2010 at 1:23 am #64695In reply to: Creating NAV Bar
Bowe
Participantyou should copy the code directly from header.php:
Here’s the div with the code
[snip]That should work fine if you’re using it for a theme which is buddypress ready/compatbile (which I presume it is
). If you’re copying it into a normal WP theme without BP installed you get errors
February 22, 2010 at 1:01 am #64692In reply to: Turn Bp in a complete Social Network
PJ
ParticipantI’m not sure. Sounds like it would benefit the overall BP community (thought it may be viewed as something for a plugin). You could create a ticket to suggest it to the developers: https://trac.buddypress.org/
February 22, 2010 at 1:00 am #64691In reply to: White page after activating plugin
@mercime
ParticipantWe definitely need a plugin which will allow user to deactivate BuddyPress triggering automatic deactivation of all BP-related plugins/components AND auto-revert theme to WP Default Theme
February 21, 2010 at 11:23 pm #64680In reply to: Forum vs. Activity Stream split personality
snark
ParticipantThanks for the links, @r-a-y — those discussions were helpful, and I can see that this has been an ongoing discussion for at least the last couple months.
For now I’ve disabled Forum replies in the activity stream, to avoid the “forked conversation” issue of having some topic relies in the Forum and some in the AS. I’m still wrestling with the whole Groups thing and the Groups comment box at the top of each Groups page — I know for a fact that when I open this up to 10k+ members of my current forum, many, many of them will just start posting their topics in the Group page, rather than creating a Topic in a Group Forum. Maybe I should just open it all up and let it be chaotic, and let the user community figure out how to self-regulate?
The other thing I’m still looking for is a sitewide Favorites option, so users can mark Forum Topics, Group AS posts, or blog posts as Favorites — currently you can only do that with Group AS posts. It looks like @JohnJamesJacoby is working on such a plugin — see https://buddypress.org/forums/topic/favorite-button-available-on-singlephp — which hopefully will be ready soon and solve this particular issue.
February 21, 2010 at 11:15 pm #64676In reply to: 1.2 plug-ins list
danbpfr
ParticipantWorking
WP single, WPMU 2.9.1 & BP 1.2
wp-ban
invisible defender
wp-spamfree
bp-links
bp-group-documents
On BP 1.2
Group Forum Subscripton for BuddyPress
SyntaxHighlighter Plus
Quanrantine (awaiting for soon? update)
bp-events
bp-groupblog
February 21, 2010 at 11:08 pm #64675In reply to: White page after activating plugin
quaker-oats
Participantthis is exactly the same problem i am having and I put a post also describing my situation (https://buddypress.org/forums/topic/upgrading-bp-getting-white-screen).
it seems like this problem may be common.
February 21, 2010 at 11:07 pm #64673In reply to: BuddyPress Maps
grosbouff
Participant@tolitoli>strange,
I don’t have this even when I reset the options…
Could you try to reset options and tell me if it happens again ?
February 21, 2010 at 11:02 pm #64671In reply to: Nothing appearing under "My Blogs"
danbpfr
Participanthad a similar problem with sub menu in “my blogs” because of a missing slash in the path.
After reading this tread, it seems it’s more complicated
anyway, i posted a ticket before i read here
February 21, 2010 at 10:41 pm #64668In reply to: Nothing appearing under "My Blogs"
David Lewis
Participant@Andy: I can’t get my SVN client to work so I grabbed the zip file from here: https://trac.buddypress.org/browser/branches/1.2 I assume that’s the same? r2755
Short story… didn’t fix it. Here are my steps:
- Set up a fresh host and database
- Installed WPMU 2.9.1.1
- Installed BP 1.2 stable
- Everything works
- Imported my broken database completely overwriting the fresh database – Blog lists are broken
- Installed BP 1.2 r2755 (Deactivate BP. Overwrite files. Active BP) – Blog lists are still broken
Would it help if I sent you a mySQL dump of the broken database for you to test with? It’s only 980KB.
February 21, 2010 at 10:36 pm #64664In reply to: BuddyPress-Links 0.3 FINAL is here at last
Jean-Pierre Michaud
Participantabout the translations i don’t mean they are outdated, they are not active at all… just english.
i pm you my details… play as you wish
February 21, 2010 at 10:30 pm #64666In reply to: Upgrading from regular WP to BuddyPress
Andy Peatling
KeymasterThat link on wpmu.org contains out of date info, so please just use the plugin.
February 21, 2010 at 10:29 pm #64665In reply to: Nothing appearing under "My Blogs"
Andy Peatling
KeymasterCan anyone experiencing this problem deactivate BuddyPress, get a copy of the 1.2 branch from SVN then reactivate and see if the problem is fixed?
Thanks
February 21, 2010 at 10:23 pm #64663In reply to: Upgrading from regular WP to BuddyPress
modemlooper
ModeratorAlso http://wpmu.org/ [snip] …
-
AuthorSearch Results