Search Results for 'theme'
-
AuthorSearch Results
-
April 29, 2011 at 4:58 am #111293
Michael Eisenwasser
ParticipantYou might want to try the BuddyBoss theme at http://www.buddyboss.com. It has a built in Wall on user profiles. Images and video can be added via oEmbed for BuddyPress, and the wall functions like a true Facebook wall in terms of how the conversation flows. It converts @mentions into wall posts so the BP Gallery plugin could potentially be integrated if you know what you’re doing.
April 29, 2011 at 2:41 am #111286In reply to: CSS help: Ask A Question Button
LPH2005
Participant@hnla – as always – you are the champion of css. I totally misunderstood the custom.css file and was adding the css into the dialog box on the Sealight control panel labeled custom css: “Quickly add some CSS to your theme by adding it to this block.” Without even looking, I just figured it was building that custom.css file. Plus, if I didn’t add it into that box then the styling wouldn’t work. Silly me.
Now, in terms of the activity-inner styling … I’ve now added it all to the custom.css and still can’t get activity-inner to work. Sigh. I’ve left that code in the custom.css and it doesn’t show in firebug either.
http://www.thechembook.com/chemistrycircle
I was going to work on getting the styling of the bubble like I did here: http://www.thechembook.com/groups/advanced-placement-chemistry-learners/forum/topic/the-atom-fast-facts-a-summary-sheet/
April 29, 2011 at 1:15 am #111285In reply to: How to disable Gravatar completely?
Brandon Allen
ParticipantYou can easily change the default avatar in your dashboard under BuddyPress > General Settings. The reason it doesn’t use the WordPress avatar setting is because BuddyPress is designed to be it’s own site with it’s own settings. If you want to disable gravatar support completely you can set no_grav to true in your theme’s bp_core_fetch_avatar function calls. This will be made even easier when 1.3 is released.
April 28, 2011 at 7:09 pm #111267In reply to: redirect to activity after login?
chrisreg1
MemberR-a-y – that doesn’t work for me unfortunately.
I am using the:
– latest version of WordPress 3.1.2
– Child theme of SuffusionAnd the latest plugins for Suffusion BP Pack (1.02), BuddyPress (1.2.
, and s2Member (3.5.7).Using the s2Member plugin settings, I have set my site to redirect users to a “Member Home” page upon logging in. This function used to work before I added BuddyPress + Suffusion BP Pack. However, since adding those plugins, I initially could not figure out why it no longer worked upon logging in. Currently, when a user logs in, the site just directs them to the main page (the default WordPress & site address). I disabled the other plugins and determined that it was BuddyPress handling the redirection.
So I made a bp-custom.php and added that code just to see if I can test the redirection function itself and it didn’t work. I even tweaked his code as well to try add_filter(“login_redirect”,”bpdev_redirect_to_profile”,100,3); Did I need to do anything else to activate the plugin or did it automatically run and link to BuddyPress?
Ultimately, it seems like I may have to implement a technique that onyx mentioned or something like http://www.thinkinginwordpress.com/2009/12/tweak-your-buddypress-login-to-redirect-to-the-page-user-was-viewing-while-login/
Does anyone have any thoughts? Thanks!
April 28, 2011 at 10:28 am #111245In reply to: Bp Drop Down menus – help correct css
nit3watch
ParticipantThanks hnla Ill give it a go.
The theme im working on is from bp 1.2.8
April 28, 2011 at 8:26 am #111239In reply to: CSS help: Ask A Question Button
Hugo Ashmore
Participantfor the record I have just done this with your page and it works as expected!
`
/*
WOO CUSTOM STYLESHEET
Instructions:Add your custom styles here instead of style.css so it
is easier to update the theme. Simply copy an existing
style from style.css to this file, and modify it to
your liking.*/
#activity-stream .activity-content .activity-inner {background: red;}
`
Use this stylesheet they provide for most of your customisations rather than squirting them into the head.April 28, 2011 at 6:54 am #111232In reply to: Notification on Profile Update
r-a-y
KeymasterThere’s a `do_action` hook you can use:
`xprofile_updated_profile` (located in /buddypress/bp-xprofile.php.)You could potentially use the wp_mail() function to send an email to the admin with this hook.
Don’t know what a `do_action` is and how to make use of it?
If you’re familiar with a tiny bit of PHP, here’s some articles that will help:
http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/
https://codex.wordpress.org/Plugin_API#ActionsHere’s something quick you can try:
`function my_update_profile_send( $id ) {
$text = bp_core_get_user_domain( $id );
wp_mail( ‘YOUR ADMIN EMAIL ADDRESS’, ‘Profile Updated’, $text );
}
add_action( ‘xprofile_updated_profile’, ‘my_update_profile_send’ );`Put the code snippet in your theme’s functions.php.
April 28, 2011 at 6:31 am #111227In reply to: Removing Activity Reply Scroll
r-a-y
KeymasterI’ll list the dirty hack method.
You have to modify /bp-themes/bp-default/_inc/global.js.
Look for the following line and delete it:
`jq.scrollTo( form, 500, { offset:-100, easing:’easeout’ } );`When you upgrade BP, you’ll have to remember to reapply this change though.
April 28, 2011 at 4:28 am #111216In reply to: CSS help: Ask A Question Button
LPH2005
ParticipantCorrect. activity-inner was not even being applied. The theme allows the customization to occur through the control panel – rather than modifying a theme file. Therefore, the activity-inner was not being added ;because I wasn’t sure what css to apply
I’ll try the code you suggest and see what happens.
Thanks!
Update: Well, drats. That didn’t work. I added that to the theme and the css didn’t load. Firebug still doesn’t show the css activity.
April 28, 2011 at 4:01 am #111214In reply to: Displaying Recent posts on main page
LPH2005
ParticipantHere is one way:
—-
Register a widget on a template page of your theme. Set that page to the front.http://www.techtipsgeek.com/how-to-add-extra-widget-section-wordpress-blog/781/
Next, use the RSS widget (or another plugin) to show the blog post.
—
Here is more information:
April 27, 2011 at 8:04 pm #111177In reply to: How to contribute to Buddypress code development
Brandon Allen
ParticipantChild themes don’t restrict anything. You can have a child theme that completely overwrites the parent theme’s code. The idea behind a child theme is that it allows uniformity, and something for plugin authors to count on when it comes to hooks and such.
Also, most of the changes you’d like to see are changes that would need to happen in core, with minimal code changes to the theme, and a few of them would be doable as plugins.
April 27, 2011 at 5:17 pm #111164In reply to: How to contribute to Buddypress code development
Paul Wong-Gibbs
KeymasterYou can do what you, but I think there’s not much scope other than post formats for any more changes to the theme on the upcoming release cycle. If you want to prove me wrong, I suggest making some mockups before you start writing code.
April 27, 2011 at 5:05 pm #111163In reply to: How to contribute to Buddypress code development
Hugo Ashmore
ParticipantYou will find that currently as things stand all themes for BP are in effect child themes, themeing for BP is not quite the same as themeing for WP. I am presently working through a new theme or at least framework it replaces all theme files , referencing only the JS files in essence, yet many of the files will remain structurally pretty similar, but that is the framework for then tweaking the UX and UI to something that one prefers, then you start to have to get involved in filtering actions and playing around with template tags where you are able.
This is as different as one is able to take a BP theme I tend not to think of it as a child theme or a re-skining but in truth it is technically a child theme if one was to be accurate about it.
The bp default theme is probably past it’s sell by date somewhat and there has been vague talk about setting to and developing the next generation theme so give it a go.
April 27, 2011 at 4:33 pm #111161In reply to: How to contribute to Buddypress code development
Alan
Memberjust another BP child theme?
no man
all those child themes look the same,can’t believe people waste their time on developing that kind of things.The default theme needs improvements as well,lot’s of things makes no sense to me and it’s kinda messy.
Especially activity stream.April 27, 2011 at 3:45 pm #111158In reply to: eventpress question
kunalb
ParticipantThe over-ride works only for the php files, not the CSS files, actually. To remove the css file in an upgrade-proof way, dequeue events.dev.css: http://justintadlock.com/archives/2009/08/06/how-to-disable-scripts-and-styles. Or you might just want to add the css with an !important added to child theme’s style css, for example `.ep-event-details { background-color: #fff !important; color: #000 !important }`.
April 27, 2011 at 3:09 pm #111156In reply to: Create group only by admin
Brandon Allen
ParticipantThere’s a ticket on Trac that would make this a filter, and would mean that one line of code in your themes function.php could clear everything up (https://trac.buddypress.org/ticket/1150).
April 27, 2011 at 1:12 pm #111150In reply to: How to contribute to Buddypress code development
Paul Wong-Gibbs
KeymasterRegarding the theme: if you want to make your own version, do as hnla suggests. Otherwise, how about mocking up some designs for post formats support and see how things go?
April 27, 2011 at 10:26 am #111143In reply to: “Add Friend” link displaying twince on member page
@mercime
ParticipantOn my end, I’ve seen this happen with an outdated BP theme (including bp-template pack) which still use bp_member_add_friend_button. Seriously needs updating.
April 27, 2011 at 7:30 am #111133In reply to: [Resolved] disable activity but only in groups
hran
MemberSOLUTION: I did this by adding the theme file groups/single/activity.php to my child theme, and then changing the post-form.php to post-form-groups.php. Then I added activity/post-form-groups.php to my child theme as a blank file.
Now the “home” part of the group still shows all activity for the group (forum posts, document uploads through the Group Documents plugin, etc), but doesn’t have the activity box, so users are funneled into creating a new forum thread or replying to an existing thread instead, which is what I want. Hooray!
April 27, 2011 at 6:59 am #111128In reply to: How to contribute to Buddypress code development
Hugo Ashmore
ParticipantDo it then but not the default theme, create a child theme which is essentially re-modeling the default. Themes are in short supply so if you have the ability then I’m sure many will be grateful for an addition to the theme library for BP.
April 27, 2011 at 6:56 am #111127In reply to: How to contribute to Buddypress code development
Alan
Memberi’d like to contribute by remodeling the default theme
April 27, 2011 at 3:10 am #111120In reply to: eventpress question
webmystery
Participant@kunalb Thanks for this great plugin. I want to override the orange color for .ep-event-details specified in events.dev.css. First I put the class in my child theme style.css. This didn’t work until I disabled events.dev.css by renaming it to xevents.dev.css. I’m now trying what you are saying above, and I want to make sure that I understand you correctly. I put /assets/css/events.dev.css in my child theme folder and it does not override the events press style. I also tried putting my own version of events.dev.css in my child theme root and that also doesn’t work. Then I tried putting /mytheme/assets/css/events.dev.css in the buddypress theme folder – no luck there either. I’m going to resort to the rename hack for now, but I’d like to find a more permanent solution. Any suggestions are much appreciated.
April 27, 2011 at 12:06 am #111100In reply to: “Add Friend” link displaying twince on member page
Virtuali
ParticipantIt’s most likely not because you’ve called a file more than once,
Seen many times with many installs is they put existing BP on top of what they already have. Investigated this myself, came up with the template pack with already called stuff from the BP default theme.
Could be many, as he hasn’t written back, which must mean he solved the issue?
April 26, 2011 at 11:05 pm #111095In reply to: “Add Friend” link displaying twince on member page
Brandon Allen
ParticipantIt’s most likely not because you’ve called a file more than once, but more likely because you’re using a custom theme of some sort. Friend buttons are now added through a do_action/add_action combo, which is why a lot of people with custom theme files ended up with duplicate buttons.
April 26, 2011 at 10:03 pm #111089In reply to: “Add Friend” link displaying twince on member page
Virtuali
ParticipantYeah removing “ will do it, but the real reason this is happening is because you have called a template twice, or, for example, double CSS in your theme by accident, (calling default.css+template pack)
-
AuthorSearch Results