Search Results for 'buddypress'
-
AuthorSearch Results
-
April 29, 2010 at 1:50 am #75885
In reply to: [New Plugin] CubePoints Buddypress Integration!
gregfielding
ParticipantAs far as I can tell, that’s all that’s missing for this to work with MU
April 29, 2010 at 1:25 am #75878In reply to: BuddyPress.org’s Unified Search – How can I get it?
April 29, 2010 at 1:19 am #75877In reply to: [New Plugin] CubePoints Buddypress Integration!
r-a-y
Keymaster@gregfielding – It’s possible, but requires some additional code.
April 29, 2010 at 1:10 am #75875In reply to: [New Plugin] CubePoints Buddypress Integration!
April 29, 2010 at 12:49 am #75869In reply to: FAQ: How To, Code Snippets and Solutions
r-a-y
KeymasterHow do I get that unified search results page like on the new buddypress.org site?
Brajesh Singh has posted a solution:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/buddypress-orgs-unified-search-how-can-i-get-it/#post-51317April 29, 2010 at 12:39 am #75868In reply to: BBpress setup through buddypress plugin?
Josh
ParticipantWell, we had to modify it a little for it to move stuff over, it moved posts over but not users which is weird…….
April 29, 2010 at 12:33 am #75866In reply to: BuddyPress.org’s Unified Search – How can I get it?
April 29, 2010 at 12:01 am #75860In reply to: [New Plugin] CubePoints Buddypress Integration!
vee_bee
ParticipantI added the points next to the users name in both the side bad, and also on the persons profile by using the following in my bp-custom.php.
Does anyone know the hooks for when someone ‘Likes’ something?
function my_bp_add_cppoints_display_my_points()
{
if ( is_user_logged_in() )
{
if(function_exists(‘cp_displayPoints’)){
echo “Points: “;
cp_displayPoints();
}
}
}add_action( ‘bp_sidebar_me’, ‘my_bp_add_cppoints_display_my_points’ );
function my_bp_add_cppoints_displaypoints()
{
if(function_exists(‘cp_displayPoints’)){
global $bp;
echo “Points: “;
cp_displayPoints($bp->displayed_user->id);
}
}add_action( ‘bp_before_member_header_meta’, ‘my_bp_add_cppoints_displaypoints’ );
April 28, 2010 at 11:56 pm #75859In reply to: Extending Groups
John James Jacoby
Keymaster@techguy The philosophy for wide-spread adoption is to not create any additional tables, and use meta whenever possible. This way you can rely on the internal functions of WordPress and BuddyPress to get and set that data, and you don’t have an upset site admin that needs to figure out where to put that table, how to cache it, how to serve it across multiple servers, etc…
I also think it depends on the scope that you need to achieve. The Groups API works really well for just about anything that you would want to plug into the groups component, but at the same time there can also be a need for totally 100% custom jobs where even the built in functionality doesn’t work for your application, in which case a totally custom theme might be in order.
All in all, I usually start with a custom plugin, that relies on the Groups API and group meta, and only use wp_sitemeta/wp_options if it’s a blanket default setting for all groups that can be changed by the site administrator.
April 28, 2010 at 11:44 pm #75857In reply to: BuddyPress.org’s Unified Search – How can I get it?
agrundner
MemberApril 28, 2010 at 11:24 pm #75854In reply to: BuddyPress.org’s Unified Search – How can I get it?
Brajesh Singh
ParticipantApril 28, 2010 at 11:22 pm #75853In reply to: BuddyPress.org’s Unified Search – How can I get it?
Brajesh Singh
Participant@el_terko Thanks
It is coming soon, I am still in the process of power packing it with customizable features for developers 
@r-a-y Thanks Ray, you are the rocking mod here
, No, I have not handled the case of pagination, but not checked that too(there were very few results on my test install), so May be I can add some more test post and will check that. Hopefully that should work or if it does not work, a slight change in ‘bpmag_global_search_qs’ can make that work. Btw, there are links below the search results for each component to let you see the component search page. It’s something like I saw on some social networks and thought to implement for my BP.@bowromir hey Bowe, that’s great
Yes, I mentioned it in the tutorial. The layout code was from my theme bp-mag which is slightly different from bp-defult.. That’s why you may see some differences(and obviously I have not supplied any css and left it upto the developers)The point was, have it in your theme and mod it as you want, that’s the reason I did not pack it as a plugin(as I promised in one of my posts 2 week ago on the site).
April 28, 2010 at 11:19 pm #75852In reply to: BuddyPress.org’s Unified Search – How can I get it?
Bowe
Participant@sBrajesh could you also post your CSS code for this (on Pastebin)? Then I can modify it for the BP-Default theme, and post it here tomorrow morning (it’s night here).
April 28, 2010 at 11:15 pm #75850In reply to: BuddyPress.org’s Unified Search – How can I get it?
April 28, 2010 at 11:08 pm #75849In reply to: BBpress setup through buddypress plugin?
r-a-y
KeymasterI haven’t read the whole thread, but there are a bunch of users in that thread with the same problem.
I’d recommend posting in the bbPress thread I mentioned above. Maybe read through everything once more to ensure you’re using the right script.
April 28, 2010 at 11:05 pm #75848In reply to: BuddyPress.org’s Unified Search – How can I get it?
Bowe
ParticipantWoow! Great @sbrajesh! Just got it working but the design itself is a bit messed up.. but I’ll try to take a look at it tomorrow, and post the results and layout improvements here.. thanks for the tutorial!
April 28, 2010 at 10:58 pm #75846shamus
Participant@r-a-y: I am using a custom theme but have the same problem with the default theme.
April 28, 2010 at 10:58 pm #75845In reply to: BBpress setup through buddypress plugin?
Josh
ParticipantWell, now i can’t login to bbpress, after following that converter………
April 28, 2010 at 10:57 pm #75843In reply to: BuddyPress.org’s Unified Search – How can I get it?
r-a-y
KeymasterHey Brajesh, your link is fine. It’s a tutorial write-up and a plugin! Thanks for contributing!
One question: haven’t tested this yet, but does pagination work for each of the different components in the search results?
April 28, 2010 at 10:56 pm #75842In reply to: BuddyPress.org’s Unified Search – How can I get it?
José M. Villar
ParticipantGee, how can I “favourite” this thread ?
@sbrajesh thanks for this tut, and would love to see a sample of your bp mag theme !April 28, 2010 at 10:52 pm #75841In reply to: Plugin Hall of Shame! :) Plugin Devs Please Read
Tosh
ParticipantCan I get mine added to the list? Mine is BuddyPress Friendly.
CubePoints Buddypress IntegrationApril 28, 2010 at 10:50 pm #75840In reply to: BuddyPress.org’s Unified Search – How can I get it?
Brajesh Singh
Participanthere is your code
http://buddydev.com/http//buddydev.com/public-download/unified-search.zip
Put the code of functions.php in your functions.php and move the single-search.php and search-loop.php to your theme.
You may check more details on my site here.
http://buddydev.com/buddypress/creating-the-sitewide-globalunified-search-page-for-your-buddypress-theme/
@mods: hope I am not doing anything wrong, but if you feel it inappropriate linking my own site, please feel free to edit this post
Edit: Sorry, the initial download link was incorrect
April 28, 2010 at 10:49 pm #75839In reply to: Forums setup is empty
José M. Villar
ParticipantDo not worry, I don’t understand it either.
To have standalone forums, you have to mess with a standalone bbP installation, which I think will be less integrated than the default groups+forums setup.I am not sure, but with previous BP versions you could have standalone forums AND group forums, visualized all together. How I miss those days…
Several coders such as @nuprn1 and @sbrajesh have expressed intentions of developing plugins/hacks for standalone forums for the actual BP versions.April 28, 2010 at 10:29 pm #75836In reply to: put some conditions and redirection upon login
shaisimchi
Participant@techguy
one other question – can you give me examples of where you actually used this action?April 28, 2010 at 10:20 pm #75835In reply to: BuddyPress.org’s Unified Search – How can I get it?
agrundner
MemberAs an aside, I came across this “sitewide” solution using Google Custom Search (not a bad option):
-
AuthorSearch Results