Search Results for 'theme'
-
AuthorSearch Results
-
April 11, 2009 at 6:08 am #42375
In reply to: Member/Group Page Template File
Burt Adsit
ParticipantThose are the member, groups and blog directories. They live in respectively:
RC1
/wp-content/mu-plugins/bp-core/directories/bp-core-directory-members.php
/wp-content/mu-plugins/bp-groups/directories/bp-groups-directory-groups.php
/wp-content/mu-plugins/bp-blogs/directories/bp-blogs-directory-blogs.php
trunk
/wp-content/bp-themes/buddypress-member/directories
April 11, 2009 at 5:22 am #42371Burt Adsit
Participantbp and wpmu use the same user table. A bp ‘account’ is a wp ‘account’. You can use any theme you like on your blog. All blog posts and their comments show up in activity from any blog that hasn’t been set to ‘private’.
April 11, 2009 at 1:47 am #42360In reply to: Skeleton Theme & Component for Developers
yeyeman9
ParticipantAlright I tried to fix it but I couldnt….Anyway, the skeleton thing is not working, I try to go to it and it just doesnt show the complete template…Do i have to add both files? Or with one is it good enough? check out what I mean:
April 11, 2009 at 1:01 am #42356In reply to: Skeleton Theme & Component for Developers
yeyeman9
ParticipantI had a question but I am working on it…if I cant fix it I will repost it..thanx….
April 11, 2009 at 12:58 am #42355In reply to: Integrating my wold wordpress blog
yeyeman9
ParticipantThere is a little something tho. I would like to cotinue using my wordpress as it currently is. What I mean is I want http://www.positiboricua.com to stay like that. Same theme, everything…Just in case. I am going to search on google tho…see what I can find…
April 11, 2009 at 12:35 am #42349In reply to: Integrating my wold wordpress blog
yeyeman9
ParticipantBut my blog is already set…how do I transfer all those posts, and the theme and the plug in, and all?
April 11, 2009 at 12:34 am #42348In reply to: Avatar cropping problem
yeyeman9
ParticipantI am using the normal theme. Nothing has been changed..
April 11, 2009 at 12:17 am #42344In reply to: Avatar cropping problem
John James Jacoby
KeymasterActually, I’ve had the exact same problem myself.
Are you using a custom theme by chance? I think it has something to do with having a parent container element be less than 100% width. But then again Andy has it working fine here, so I’m not really sure.
April 11, 2009 at 12:14 am #42343In reply to: How do you delete user profile text
happa
MemberHey Halfpint , I’m getting the same error as you when I try to activate the facebuddy theme..
I’ve looked in the locations you stated above but I only have the bp core signup.php only in bp-core directory , and not in mu-plugins or anywhere else that I can see.
Any help is greatly appreciated.
Thanks,
Jenny
April 10, 2009 at 11:12 pm #42339In reply to: Use the \”bp user link\” in a wp theme
Paul Wong-Gibbs
Keymasterbp_core_get_userlink()
April 10, 2009 at 10:34 pm #42334In reply to: Comment loop gone when using /category/ permalink
Burt Adsit
ParticipantAre you using the bp home theme?
April 10, 2009 at 9:54 pm #42328In reply to: Theme for BuddyPress?
fishbowl81
ParticipantThe nice thing about themes, they are just html. Which is free to look at and examine. Chances are if you take a look at the source, and spend a few minutes in an image editor you will find this “theme” pretty easy to replicate.
What will be much harder to do is the quality job Andy has done integrating bbpress inside of buddypress. This blend on buddpress.org is seamless, and very difficult to achieve at this point without a lot of “deep intergration”.
But take a look at the source, and I think you will see it holds most the answers.
April 10, 2009 at 9:52 pm #42327In reply to: Theme for BuddyPress?
John James Jacoby
KeymasterAndy’s mentioned that he will release some of his tricks eventually, but for now his main focus is readying BP for the 1.0 release.
You can piece a lot of this theme apart by staring at the CSS for a while. (It’s mostly just a lot of background images.)
April 10, 2009 at 9:49 pm #42326In reply to: Theme for BuddyPress?
Budde
ParticipantI wonder if that means he will not release information on how to make the sub-nav and oval shaped content areas.
April 10, 2009 at 9:41 pm #42323In reply to: Theme for BuddyPress?
John James Jacoby
KeymasterIf I was going to use WordPress and bbPress as past examples, no, and don’t bet that it will be anytime soon.
Someone may make a replica, but usually the *Press public themes aren’t available for public use.
April 10, 2009 at 9:40 pm #42322In reply to: Theme for BuddyPress?
Budde
ParticipantNever Mind, I found the answer in another thread.
April 10, 2009 at 7:46 pm #42310In reply to: How to add new top buttons ??
John James Jacoby
KeymasterThe only potential draw back with that method Erwin, is that it adds the link at the end of the assembled navigation instead of giving you total control over it.
Something to think about, is that BuddyPress really does allow for per-theme blog setups.
The difference between:
and
http://delsolownersclub.com/news/
and
http://delsolownersclub.com/mafdark/
Are all just smoke and mirrors with different themes.
You could really make any ‘blog’ of your website do whatever you want it to do, just like how the BuddyPress Codex is really just another blog.
Morpheus: “Do you think that’s air you’re breathing now?”
April 10, 2009 at 3:32 pm #42288In reply to: How to add new top buttons ??
mypop
ParticipantThis is how I did it.
I modified header.php in the buddypress theme AND the member theme.
There is probably a better way since the forums location is included as part of the integration, however it works, and you can use this principle to include a hard coded link to anywhere.
Find the bit of code that starts
<div id="header">
The first bit is the routine to run the blogs page, the second opens up bbPress in a seperate tab.
`<?php if ( function_exists( ‘bp_blogs_install’ ) ) { ?>
<li<?php if ( bp_is_page( BP_BLOGS_SLUG ) ) {?> class=”selected”<?php } ?>><a href=”<?php echo get_option(‘home’) ?>/<?php echo BP_BLOGS_SLUG ?>” title=”<?php _e( ‘Blogs’, ‘buddypress’ ) ?>”><?php _e( ‘Blogs’, ‘buddypress’ ) ?></a></li>
<?php } ?>
<li><a href=”http://www.mypartyonparty.biz/forums” target=”_blank” title=”<?php _e( ‘Support’, ‘buddypress’ ) ?>”><?php _e( ‘Support’, ‘buddypress’ ) ?></a></li>
<?php do_action( ‘bp_nav_items’ ); ?>`
What I’d like to do is present the forums in the same way that is done on here (BuddyPress.org, ) that just needs a bit of thinking about…
Hope that helps
April 10, 2009 at 2:23 pm #42279In reply to: Buddypress Total-Black-Out :(
Jeff Sayre
ParticipantWell, it seems like you have an issue, alright. Let’s go down the list once again:
- You’re working with a current trunk of both WPMU 2.7.1_beta1 (current: r1725) and BuddyPress 1.0_RC2 (current: r1324)
- You’re using an old copy of wp-config.php which you updated as appropriate. In other words, you did not use the wp-config-sample.php that came with WPMU 2.7.1.
- You did a clean install of WPMU 2.7.1_beta1 by deleting everything, except your updated version of wp-config.php, and then uploaded the unzipped Mu files
- You then launched WPMU’s admin screen. That worked with out any problems.
- You then went to Site Admin > Upgrade and finished the upgrade
- You logged out of WPMU
- Next, you installed BuddyPress by:
- moving the contents of the unzipped BuddyPress 1.0_RC2 (r1324) to the WPMU plugins directory into a subdirectory called /buddypress/
- moving the /bp-themes/ directory out of the /buddypress/ directory
- placing the various themes in their proper locations
- You then logged back into WPMU and got a blank screen
A few follow up questions:
9. You’ve enabled error reporting as detailed above by John and Burt and after step 8 above, there are absolutely no errors being reported of any kind.
A few thoughts:
- Since this seems to be a test install and you do not have any content that needs saving, I would delete everything once again.
- This also means deleting your MySQL table that you’ve been using for this attempt and starting with a brand new database.
- I would then download the latest trunks of both WPMU and BuddyPress once again–>get rid of the old ones first.
- I would then use the wp-config-sample.php file that comes with the latest WPMU trunk and configure as necessary
- IMPORTANT: I believe when I downloaded the WPMU trunk (r1722) and looked at the wp-config-sample.php file, it had a trailing space after the closing php tag. You need to delete this!
- Now, go through steps 1 through 7 again and let’s hope when you get to step 8 it works!
April 10, 2009 at 2:14 pm #42278In reply to: How to add new top buttons ??
halfpint
ParticipantI still cant get this to work I have installed simple forums and want a link/ button to show up in the top members theme so they can go straight to the forum when the members are logged in
thanks
April 10, 2009 at 4:16 am #42256vito687
ParticipantI am running MAMP on a mac OS, I followed andys instuctions in a former post, I have a custom theme that I used so I copied the functions files to the members theme as per the instuctions as well as the functions from the home theme to my home theme.
https://buddypress.org/forums/topic.php?id=1994
It is not a cache issue or cookies or anything, it physically was not loading the style sheet which is stored in bp-themes/bp-members/css/directories.css, I got it working by putting the name into the loader.php file which is stored in the same place.
what I need now though is the header.php that is called within the groups/index.php and members/index.php because they are now stored in bp-themes/bp-members it calls the wrong header
April 10, 2009 at 3:32 am #42250In reply to: BuddyPress Showoff: Post your links
felix2009
ParticipantAs i didnt like the orange colors in BuddyPress, i did a slightly little make over …
And yes .. I did integrate bbPress in the current theme with a few minor steps
April 10, 2009 at 3:15 am #42247In reply to: My theme …
John James Jacoby
KeymasterNot necessary to open a second topic.
You can add your link to this post if you’d like.
https://buddypress.org/forums/topic.php?id=185
We appreciate your contributions, but you’re going against the grain here.
April 10, 2009 at 2:59 am #42241In reply to: Edited evrything …
felix2009
Participant“I’m keeping this topic open for now, but it’s on my watch list because it’s already breaking some rules. If it gets too rowdy in here I’m locking it up.
“
What rules did i broke, just that i wrote down, that i edit and integrate bbpress into a buddypress theme ?
“(cause you’re not ok with the wp policy) “
There are many website’s out on the net who arent: “oke” with the WP policy (what ever that should be) …
I dont see the problem, and the only who makes a problem out of it, are you guys
April 10, 2009 at 2:39 am #42239vito687
ParticipantFinal post, I got eveything working using the above mentioned fix, it appears the loader.php stored in the CSS was not loading directories css so maybe andy could take a look at that. Also the header is in fact linked, but its the members header, which my members header is different than my Home theme header, could anyone tell me how I could include my header that is stored in themes/buddypress-home rather than the memebers one? thanks
-
AuthorSearch Results