Search Results for 'buddypress'
-
AuthorSearch Results
-
October 1, 2010 at 12:36 am #93913
In reply to: Privacy Comes to BuddyPress (very soon)!
paulhastings0
Participant16 months… we’ve been waiting that long? Wow.
October 1, 2010 at 12:26 am #93912paulhastings0
ParticipantWe meet online every 2 weeks. You can suggest agenda items here: http://bpdevel.wordpress.com/
Wednesdays @ 19:00 UTC
IRC: irc.freenode.net
Channel: #buddypress-dev
Web-based IRC client: http://java.freenode.net/Roger posted some good links too. I’ve been really impressed with the potential of filters and the like.
October 1, 2010 at 12:16 am #93911In reply to: AJAX refresh of activity loop
LPH2005
Participant@modemlooper “Could slow down your site if you do live updating for every member.” — Yes. this would depend on the implementation. For example, if the BuddyPress Activity Stream Ajax Notifier was reworked to refresh the page rather than notify then the activity stream would “feel as a real-time” activity.
September 30, 2010 at 10:55 pm #93908Roger Coathup
ParticipantOk… there are few things you need to look at to achieve this:
You should create a new theme where you are going to implement your reworked profile / activity sub-nav menu. I suggest deriving this from the bp-default theme: https://codex.buddypress.org/extending-buddypress/building-a-buddypress-child-theme/
In the default theme, the activity sub-nav menu is created by a call to bp_get_options_nav() in /members/single/activity.php. It’s this call that you’ll either want to replace with your custom version (or apply filters / action hooks to get your desired result).
You should also take a look at how the activity stream is built – it’s quite easy to create your own activity loop that will return all the items for a given user merged into a single page (rather than the separate tabs): https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/
Hopefully that’s enough to get you started.
September 30, 2010 at 10:25 pm #93907In reply to: Howto : put a picture between header and content
Roger Coathup
ParticipantThere are any number of ways you can do this using CSS positioning (and developing your own bespoke website theme).
This isn’t really a BuddyPress question though, it’s a general website development / CSS question. I suggest a good book on CSS would be a starting point.
Incidentally: There’s no need for div wrappers just to position an image (you are adding unnecessary bloat), and I’d certainly avoid inline style definitions (which can be a maintenance nightmare).
@pcwriter – I’m not sure what you are trying to write with your CSS, but I suspect you’ve confused absolute and relative positioning. For the approach you are suggesting, you should make your main header div relatively positioned, and use absolute positioning on your image to position it absolutely in relation to the header div: http://css-tricks.com/absolute-positioning-inside-relative-positioning/
As to suitability of BuddyPress for a ‘simple site’ – it depends what you want that site to do – if you want user profiles, messaging, groups, activity streams, etc. – then BuddyPress gives you a great platform to build on.
If you just want a simple content management system with posts, then you’d be better building on vanilla WordPress.
If you don’t need content management, then your simplest site would just be HTML and CSS.
September 30, 2010 at 10:06 pm #93906In reply to: Howto : put a picture between header and content
pcwriter
ParticipantThe image should be contained within a div whose precise placement in the header can be controlled with position:relative;
Here’s an example styleset to get you started:`.my-header-image {
position:relative;
left:-50px;
top:150px;
z-index:1;
}`In the above example, the top-left corner of the div will sit 50px to the left of the left edge of your header, and 150px below the top edge of the header. No width or height is defined so you can place whatever size image you want in it. Here’s how:
`
`
Hope this helps!
September 30, 2010 at 9:32 pm #15494Topic: Edit Profile Menue
in group forum Third Party Pluginsdichta
MemberHi there,
i am very new in buddypress, have a question about the users profile menue. maybe someone can help.
i would like to deactivate some menu buttons like “Groups” – is there a smart way to do it?thankfully
dichtaSeptember 30, 2010 at 9:28 pm #93904In reply to: Privacy Comes to BuddyPress (very soon)!
dichta
Memberthats very cool jeff! i cant await to turn on all the new privacy settings
September 30, 2010 at 9:24 pm #15492Topic: Privacy Comes to BuddyPress (very soon)!
in group forum Third Party PluginsJeff Sayre
ParticipantYou can learn all about it here: http://bp-privacy.com/
September 30, 2010 at 5:53 pm #15490nit3watch
ParticipantAll those that would like to see buddypress integration for MapPress Google Maps Plugin, visit Chris Richardson’s site ( http://wphostreviews.com/ ) and vote
September 30, 2010 at 4:44 pm #93894In reply to: Disable Oembed on a certain activity stream?
thelandman
Participant@r-a-y thanks so much! Worked like a charm.
September 30, 2010 at 4:24 pm #93890In reply to: private messaging broke on 1.2.4 upgrade
paulhastings0
Participant@owrede Make sure that you’re using BP 1.2.5.2
September 30, 2010 at 4:11 pm #93886In reply to: Bug: "Recent Site Wide Posts" Widget
paulhastings0
Participant@jutecht12 Something else appears to be the problem here. When I visit your blogs tab it says that most of your blogs were updated over a month ago. But when I visit the individual blogs some say they were updated just a couple of days ago.
Let me guess, did you upgrade either BuddyPress or WordPress on September 8th?
I would try installing BuddyPress and WordPress one more time again from scratch. Possibly even change the name of the database. Make sure to create backups though.
September 30, 2010 at 3:40 pm #15487Topic: Howto : put a picture between header and content
in forum Creating & Extendingaskunky
ParticipantHi,
the question is as in Title

More precisely, how can you put a pic where you want like in bettercodes.org ?Is it a good idea to design a simple website with buddypress ?
thanks a lot,
Fred
September 30, 2010 at 3:21 pm #93873rossagrant
ParticipantThanks so much for the code, i’ve just given it a try but I’m getting a blank page when trying to look at the post’s page.
<?php if( ! in_category('61') )
comments_template(); ?>Category 61 is the one I want to disable comments on so I used the above code. Is that all I needed to put in single.php or is there anything else?
Sorry for sounding so crap, but… I am!
Oh yeah, any progress on the CV plugin? Can’t wait to start using it!
Thanks@hnla @rogercoathup Thanks for your help here too guys!
September 30, 2010 at 2:38 pm #93868Roger Coathup
ParticipantYou can write your own customised BuddyPress website (theme) to achieve this:
Please check the codex reference I gave you – it has all the details on how to write your own custom (filtered as you want it) activity loop.
Also check under docs on this site for details on how to write your own bespoke website theme.
September 30, 2010 at 2:16 pm #93865In reply to: Show Profile changes in activity feed
Roger Coathup
ParticipantYou should add an action function to the xprofile_updated_profile() hook. It’s called when a profile is edited.
In your action function, you can use bp_activity_add() to create a new activity item each time a profile is edited.
You can find those functions in bp-xprofile.php and bp-activity.php, and it’s probably worth checking to see how they work.
If you are not familiar with writing hooks, there is some content in the docs section on here. [ https://codex.buddypress.org/developer-docs/action-reference/ ]
If you search the forums for bp_activity_add you’ll find some examples of how to setup and call that function – it’s at the heart of what you are trying to do.
September 30, 2010 at 2:09 pm #93864nit3watch
ParticipantI got it to return the group rating ( changed a posts id to a groups id ), checked it by editing the votes in the db table though just can’t get it to save the group id. Please help
September 30, 2010 at 2:07 pm #93863Ehegwer
ParticipantSeptember 30, 2010 at 1:59 pm #93862Roger Coathup
Participant@ehegwer – post your question as a separate thread, if you want users to find and answer it
September 30, 2010 at 1:57 pm #15484PH (porsche)
ParticipantHey All,
I have WP3 (current) “MU-upgrade” and BP (current) — I installed P2 in one of my blogs and oEmbed doesnt seem to work and the AutoRefresh doesnt seem to work… is p2 Theme suppose to work out of the box with WP (current) and BP (current) ?
September 30, 2010 at 1:47 pm #93860In reply to: Bug: "Recent Site Wide Posts" Widget
jutecht12
Member@paulhastings0 I forgot to add we’re in a sub-folder install on bluehost. Site at http://www.coetail.asia
September 30, 2010 at 1:38 pm #93859In reply to: Bug: "Recent Site Wide Posts" Widget
jutecht12
Member@paulhastings0 yes…all blogs are public and actually any and all widgets/plugins that are suppose to be site wide are not pulling any of the blog posts or other content. I’m running 1.2.5.2 which from I can tell is the latest version. I’ve checked the config.php file to see if there was something I had to switch on there and couldn’t find anything. All site wide widgets just pull from the main blog. Really would like to have the latest blog posts from the community on the front page.
September 30, 2010 at 11:44 am #93850In reply to: Get non-activated users
Paul Wong-Gibbs
KeymasterSeptember 30, 2010 at 11:42 am #93849In reply to: Get non-activated users
Hugo Ashmore
Participant@bowromir I was trying to ensure the thread didn’t necessarily run on seeming to be focused at your site, this was trying to be kind! As for Moderators hat actually no it can’t ever be left off that is one of the burdens incurred in the responsibility, and I definitely do not feel the need to act tough and I trust that was a joke
as for showing power that is the mark of a BAD moderator I’ve been doing this sort of thing for far too long to be feeling as though I needed to demonstrate power, also too old to think that’s important.I’ll close the thread though now which is about the only power I do have

-
AuthorSearch Results