Search Results for 'buddypress'
-
AuthorSearch Results
-
July 10, 2010 at 2:26 pm #85024
In reply to: Biblefox.com – BuddyPress powered Bible study
Richard Venable
ParticipantWhoa. Thanks to @moosh101, I realized my sign up page was busted. I fixed it now, but that wasn’t good timing for the sign up page to break.
July 10, 2010 at 2:00 pm #85023In reply to: How to filter all activity from a member
Boone Gorges
KeymasterCheck out this post by Rich: http://blog.etiviti.com/2010/03/buddypress-hack-remove-non-friend-updates-from-the-activity-stream/ You’ll want to change line 10 to be something like
if ( $activity->user_id == $filtered_user_id )(or use in_array if you have a number of users whose content you want to filter).Not a perfect solution – it’ll screw up some of your page numbering if you filter out too much – but it’s good for filtering out the occasional item from a particular item.
July 10, 2010 at 1:35 pm #85022In reply to: TwentyTen child theme for BuddyPress
Boone Gorges
Keymaster@marcogiustini – That’s strange – what themes are you using on the secondary sites? As long as the themes contain
do_action( 'wp_footer' ), the admin bar should show up on them.July 10, 2010 at 1:33 pm #85021In reply to: How to query for groups
Boone Gorges
KeymasterBy the way, similar loops exist for bp_has_groups(), bp_has_members(), etc. The codex is pretty good on these subjects: https://codex.buddypress.org/developer-docs/custom-buddypress-loops/
July 10, 2010 at 1:32 pm #85020In reply to: How to query for groups
Boone Gorges
Keymaster@ajaxmac – If you want to get group activity updates, you’ll want to query for *activities* rather than groups. Check out bp_has_activities() https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/. For example, you can get the last five activity updates from a group with a loop containing the following query:
if ( bp_has_activities( 'max=5&object=groups&primary_id=' . $group_id ) )(obviously you’ll have to get that $group_id from somewhere).Then use the rest of the activity loop to display the content. Check out buddypress/bp-themes/bp-default/activity/entry.php to see how bp-default displays a single activity item within the loop, and activity-loop.php to see an (albeit complicated) example of how bp-default initializes the loop with a query.
July 10, 2010 at 1:25 pm #85019In reply to: Make users able to use brackets in their posts
Boone Gorges
KeymasterIndividual inequality signs seem to work OK.
Are you trying to allow users to post HTML code? That’s a different beast altogether. If you want to allow them to place HTML *elements* in their status updates, etc (eg so that they can make a piece of text bold by putting strong tags around it), you’ll want to add those tags one by one to the kses filters for individual components. See, for example, buddypress/bp-activity/bp-activity-filters.php, bp_activity_filter_kses(). You can either remove that filter altogether (by dropping
remove_filter( 'bp_get_activity_content_body', 'bp_activity_filter_kses', 1 );
remove_filter( 'bp_get_activity_content', 'bp_activity_filter_kses', 1 );
into a bp-custom.php or functions.php file), or you can put a filter on bp_activity_allowed_tags to allow individual tags through.If you’re trying to allow your users to post *code*, make sure that you include the
codeandpretags in your kses filter.July 10, 2010 at 1:20 pm #85018In reply to: Will activating buddypress wipe out my WP theme
Boone Gorges
KeymasterThere are a couple ways to make themes for BuddyPress.
One way is to make a child theme for bp-default. Instructions can be found here: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/ This is a good option because it’s relatively simple, but it will restrict you to some extent to the general structure of the bp-default theme.
Another way is to integrate BP features into your own Svelt theme. The BuddyPress Template Pack will help you do that. https://wordpress.org/extend/plugins/bp-template-pack/ Basically, it provides the extra templates necessary (on top of your existing WP templates) to run BuddyPress functionality. Follow the Template Pack instructions carefully on a test installation, and see what you think. Once you’ve gone through the Template Pack setup, you can start customizing the way that BP integrates with your theme to your liking – but BPTP will give you a nice headstart.
July 10, 2010 at 1:07 pm #85012abcde666
Participantnot sure what the coders (I am definitely not talking about the BP-Core-Developers, but rather the “Coding-Community”) are waiting for ?
The Core-Developers did a great job and are a bit exhausted for the moment, which is very understandable and acceptable.Now is the time for the Coding-Community to move ahead and a matter of TEAM-building into small teams who take on features they want to improve or develop.
July 10, 2010 at 12:25 pm #85011In reply to: Help Getting Started
July 10, 2010 at 12:04 pm #85008In reply to: iPhone app for BuddyPress
ajaxmac
ParticipantAbsolutely. An iPhone app for buddypress would be very cool.
July 10, 2010 at 11:06 am #85006In reply to: TwentyTen child theme for BuddyPress
Marco Giustini
ParticipantUnfortunately it doesn’t work for me in the way you suggest. The admin bar didn’t show if I use the normal Twentyten theme for slave sites.
July 10, 2010 at 10:48 am #85004In reply to: Is there a latest forum topic widget?
rossagrant
Participant@nuprn1 Thanks Rich, that’s done the trick!
July 10, 2010 at 8:56 am #85000In reply to: Help Getting Started
Jonathan Montubig
ParticipantI also have the same problem as u Ky, but Im running it on a local server. I also check my email account and there are no whatsoever emails from bp after I finished filling up the form in the registration, do we need to run bp online to test it, although there is an online demo, i need to check it b4 doing it on an actual online site?? BTW, It also shows up in my dashboard’s users.
Also, I wanted to ask if BP needs to have MU enabled?? Im using it in wordpress 3 (they say it has MU in it also) and buddypress.1.2.5.
I tried using Buddypress on wordpress 3 (wwithout enabling mu) and it works fine and the only prob was that the registration doesn’t work the way it did like when I register here at BP forum.I hope someone can help us with the problem. Thanks to u all.. ^_^V
Really sorry if this is a super newbie question..July 10, 2010 at 8:03 am #84999In reply to: BuddyPress Group Tags is now available
nit3watch
Participant@antonrsa
Here’s the amended code http://pastebin.com/HW7W113Wreplace bp-group-tags.php with this
July 10, 2010 at 7:57 am #84998In reply to: BuddyPress Group Tags is now available
nit3watch
ParticipantI got it to work, with r-a-y’s help, what do you need help with? The only thing not working on my side it the tag selector, ( the ajax, I think? )
July 10, 2010 at 7:22 am #84997Hugo Ashmore
ParticipantAnother very good SC plugin(free) is Fireshot for Firefox.
The intelligent coders are all here, waiting and willing, posts such as this are the clarion calls to stir everyone to action, and after the recent posts discussing the state of play the core dev team and mods are attempting to ensure the project is put on an even firmer footing.
In terms of BP as a project and production application I think it’s worth remembering ( I certainly have to remind myself ) that BP is a relatively young project – WP took quite a few years before it settled into a mature app – As for looking to the long term I think that this is addressed in the NextGenAPI which is a necessary next step and one that looks to take BP forward.
July 10, 2010 at 7:05 am #84996In reply to: Buddypress Follow, Friends, etc functions in sidebar
Hugo Ashmore
ParticipantFollowers/Following is available as a plugin and has a widget to add ‘users following you’ to any sidebar/widget area. Friends is generally see on your account screen, doesn’t have a widget as such but it shouldn’t be hard to add the friends loop to a function in your functions.php file and to add it then to perhaps a sidebar-me hook to render on the sidebar.
July 10, 2010 at 6:15 am #84994In reply to: BuddyPress Group Tags is now available
Anton
ParticipantCan anyone help me with this?
July 10, 2010 at 4:23 am #84993In reply to: Blogger style bar on all blogs
r-a-y
KeymasterAlso make sure BuddyPress is activated network-wide.
July 10, 2010 at 3:13 am #84992In reply to: Biblefox.com – BuddyPress powered Bible study
@mercime
ParticipantCool @rvenable. I know some groups who would be interested in using this plugin. Will be checking it out. Thank you.
July 10, 2010 at 2:58 am #84991In reply to: Blogger style bar on all blogs
@mercime
Participant@damian2001, change to bp-default theme, you will see the bp-admin bar across all sites like the one at http://testbp.org/
Double check dashboard – BuddyPress > General Settings > Hide admin bar for logged out users?:> should be NOJuly 10, 2010 at 2:47 am #84990Scott
ParticipantI got ahold of the developer of the Transposh plugin. He noted an error in the script for register.php. Here is his response. I followed his instruction and it works again! This is a very impressive plugin! You can do this quick fix until the next buddypress update if you want his plugin!
From Transposh developer:
Found the bug in the buddypress theme
look at the file
wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php
Search for “Complete Sign Up”
See the missing space between the type and the name – add one!Also reported upstream: https://trac.buddypress.org/ticket/2516
July 10, 2010 at 1:40 am #84988In reply to: What happened to my index.php template?
nickaster
ParticipantRight – so I found it but I have to bloody FTP into my server to get to it? WHat the heck is buddypress doing here? If I go into my theme editor in wordpress, the only index.php file I see is some buddypress shenenegins, and not my real front page. Am I going to have to use FTP from now on to edit it?
What if I want to get rid of buddypress?
July 10, 2010 at 1:25 am #84987In reply to: Voting / Polls Plugin for Buddypress Groups Request
abcde666
Participanthere is the feedback directly received from PollDaddy.com / Automattic:
BuddyPress should be able to use the Polldaddy WordPress plugin ( https://wordpress.org/extend/plugins/polldaddy/ ) but its not officially supported.
July 10, 2010 at 1:02 am #84986abcde666
Participantgreat initiative, Jeff.
I myself have reported about 293 defects, enhancements and suggestions into the TRAC-reporting-system during the last year and a lot has been fixed and changed so far.
So where are all the intelligent coders who are capable of moving BuddyPress to the next level ?
Only by improving the core-code of BuddyPress, all of you coders, freelancers and designers will make money in the long-term.
Do not take the short-term-view, step out of your tunnel-vision and take the long-term-approach !Well, I guess you remember what the short-term-view did to e.g. the financial industry ?
-
AuthorSearch Results