Search Results for 'buddypress'
-
AuthorSearch Results
-
September 6, 2010 at 11:51 pm #91713
In reply to: Activity stream replies
LPH2005
ParticipantThis is the activity loop
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
And I see options for how many to show but setting a max of 2 wouldn’t place a link for others to be seen … at least not that I can tell.
September 6, 2010 at 11:47 pm #91712In reply to: Activity stream replies
Roger Coathup
Participant@antonrsa off the top of my head, isn’t that just a theming issue… Modding your loop? Or does the core template tag spit out all the replies en masse?
September 6, 2010 at 11:43 pm #91711In reply to: How to allow ONLY image posts?
Roger Coathup
Participant@adelack Bp-album+ (I think it’s called bp media now) was going to be my other suggestion… It’s definitely a good starting point for your image upload challenges. Good luck with your site.
September 6, 2010 at 11:13 pm #91705In reply to: How to allow ONLY image posts?
Ade Lack
ParticipantThanks again I have started to use bp_album+ plugin which is pretty close to adding the functionality I want straight out of the box as it enables image uploads and comments to be posted to users wire. Just got to figure out how to remove upload privacy options now!?!
Thanks @rogercoathup and @lightcapturer your suggestions led me to finding this (possible) solution
September 6, 2010 at 11:10 pm #91706In reply to: custom plugin : hook bp_setup_globals is not fired
Dwenaus
Participantthis handy code, https://codex.buddypress.org/how-to-guides/make-your-plugin-buddypress-aware-v1-2/, should probably be added to the skeleton component. Because I believe the problem still persists with the skeleton component in that bp_setup_globals never gets called in time. ugh. but not sure if even that fixes this perplexing issue. bp_globals_doesn’t seem to fire still.
September 6, 2010 at 10:21 pm #91703In reply to: Multiblog + unique communities
Apposl
ParticipantWow, I could really use something like that at my geotagging photoblog at FavTrip.com!
Even without being able to track users coming in through the subdomains – yes, that’d be nice (maybe not through Buddypress but through analytics or something? I don’t know) – I really need to set up multiple users with my site. I just got featured on KillerStartups.com and am trying to get all the functionality worked out!
September 6, 2010 at 9:46 pm #91700In reply to: How to make a private community?
NipponMonkey
MemberI’ve now added greater support for allowing access to your site. In the array of allowed URIs, you can now use ‘*’ at the end of an allowed URI,
e.g. Array(‘/public-blog’, ‘/public-blog/*’) would allow access to ‘/public-blog/post-1’, ‘/public-blog/post-2’, etc…
This is useful for allowing greater access to your site while keeping it private, and for allowing access to parts of your site that certain other plugins might require.
See FAQs for more information:
https://buddypress.org/community/groups/buddypress-private-community/home/September 6, 2010 at 9:26 pm #91698In reply to: secondary blog & permalink-fail
Meerblickzimmer
ParticipantWell, it´s this bug: https://trac.buddypress.org/ticket/2456
And there is no solution out for this bug?
Thanks for help!
MSeptember 6, 2010 at 9:22 pm #91697In reply to: Change Adminbar font color?
pcwriter
ParticipantHave you tried my plugin?
https://buddypress.org/community/groups/add-all-nav-links-to-bp-adminbarAlong with enabling or disabling the “Add WordPress pages” and “Add Buddypress components” features, you have complete control over the style of the adminbar in an easy-to-use UI. Just enter the colors you want where you want them, save, and you’re done.
September 6, 2010 at 9:08 pm #91694In reply to: How to Exclude a Group From the Groups Loop
Roger Coathup
Participant@ch8rt – rather than write that long nested if structure, put your group names into an array, and then check if the bp_get_group_name is in that array, using the PHP in_array() function: http://php.net/manual/en/function.in-array.php
@pollyplummer – Yes, an exclude parameter would be very useful – it came up in another forum thread recently as well
September 6, 2010 at 8:53 pm #91692In reply to: How to modify the top admin bar?
erikshosting
Memberand adding all your wordpress pages to the menu dynamically..
http://erikshosting.com/wordpress-tips-code/add-all-pages-to-buddypress-admin-bar-dynamically/There’s also a snippet for putting the pages into a drop down menu instead of straight across the top..
September 6, 2010 at 7:23 pm #91682In reply to: BuddyPress Backwards Compatibility Plugin Broken?
Derek
ParticipantIt only works for me with everything else disabled. I believe it is indeed broken
September 6, 2010 at 5:58 pm #91676In reply to: Bp Album Update?
Ekine
ParticipantThe devs are working on it. Maybe a month or so… in the meantime this plugin might help. https://wordpress.org/extend/plugins/buddypress-kaltura-media-component/
September 6, 2010 at 5:16 pm #91673In reply to: How to make a private community?
NipponMonkey
Member@Gpo1, what happened?
Could you give your feedback in the plugin’s forum:
https://buddypress.org/community/groups/buddypress-private-community/forum/The general response has been good so far, it seems to be working fine for everyone else, so I’d be interested to know what’s going wrong for you.
Did you get an error message?
September 6, 2010 at 4:54 pm #91671In reply to: Buddypress iPhone theme update
Ekine
ParticipantThe screenshots look great.
September 6, 2010 at 4:33 pm #91668In reply to: Admin bar disappeared
govpatel
Participantwhen you installed buddypress sliding login panel you had to put this code define( ‘BP_DISABLE_ADMIN_BAR’, true );
in wp-config.php to hide the buddypress admin bar just take it out and deactivate buddypress sliding login panel.September 6, 2010 at 3:25 pm #91663In reply to: BuddyPress Chat – Similar to Facebook’s
September 6, 2010 at 2:40 pm #91662In reply to: How to allow ONLY image posts?
Roger Coathup
Participant@adelack –
I would follow the recommendation from @lightcapturer and try the oEmbed plugin – which will let you pull images from urls
If you want actual image upload features, that would be much harder work – you could look at how the avatar upload code works for profiles and try to find some ideas from that
September 6, 2010 at 2:28 pm #91660PapaTango
MemberSorry to say, a lot of us on the end publishing equation are not programmers… I used EngineSite to find the string, but have no clue as to where the parent ID for the menu item is to be found. even then, is it simply a matter of entering that ID into the argument?
‘/**
* bp_core_remove_nav_item()
*
* Removes a navigation item from the sub navigation array used in BuddyPress themes.
*
* @package BuddyPress Core
* @param $parent_id The id of the parent navigation item.
* @param $slug The slug of the sub navigation item.
*/
function bp_core_remove_nav_item( $parent_id ) {
global $bp;/* Unset subnav items for this nav item */
if ( is_array( $bp->bp_options_nav[$parent_id] ) ) {
foreach( (array)$bp->bp_options_nav[$parent_id] as $subnav_item ) {
bp_core_remove_subnav_item( $parent_id, $subnav_item );
}
}unset( $bp->bp_nav[$parent_id] );’
Thanks!
P
September 6, 2010 at 2:18 pm #91658In reply to: How to allow ONLY image posts?
Ade Lack
Participant@rogercoathup Ok looks like I’ll modify the status update to support image uploads. Any advice on how to do this would be much appreciated!?
September 6, 2010 at 2:02 pm #91656In reply to: Need some advice on member’s photo uploads. HELP!
govpatel
ParticipantTry this plugin BuddyPress Album+ they can upload photos from the profile .
September 6, 2010 at 12:22 pm #91654In reply to: Changing fonts in the BuddyPress Default theme?
ch8rt
MemberI would recommend this as a great place to start looking into child themes. Its not advisable to edit the default theme, since your changes could be overwritten if/when you update your buddypress plugin.
For a quick a dirty change however you’ll need to change some values in the default.css file which can be found in wp-content / plugins / buddypress / bp-themes / bp-default / _inc / css / default.css
Your looking for ‘font-size:’ under body and h1, h2, h3, h4, h5, h6.
Hope that helps.
September 6, 2010 at 12:06 pm #91652In reply to: Changing fonts in the BuddyPress Default theme?
Adam
ParticipantI haven’t changed any of the coding whatsoever, and, sorry I should have mentioned, I’m using the theme ‘BuddyPress Default 1.2.5.2’.
I’ve tried using the ‘Inspect Element’ in Chrome, however am still confused as to what I need to change. Does anybody know what line these setting are on within the code, and in what file?
Thanks again.
September 6, 2010 at 11:58 am #91650In reply to: Changing fonts in the BuddyPress Default theme?
ch8rt
MemberThis should be a CSS change, your probably best to use a something like firebug ( a plugin for Firefox ) to locate the attributes that need changing and then searching for them within the stylesheet your site is using.
Without knowing how much you’ve changed or whether your using a child theme its difficult to say where specifically you’d need to look.
September 6, 2010 at 9:12 am #91646In reply to: *updated* BuddyPress Groupblog – update the plug-in
Anointed
ParticipantWhat is the actual problem with subdomains?
Might help me to know what the issue is before trying to fix it.
thnx
-
AuthorSearch Results