Search Results for 'theme'
-
AuthorSearch Results
-
May 3, 2009 at 1:37 am #44221
belogical
ParticipantYeah Jeff, I understand. I\’m trying to figure out why my component is showing up on the home page but not on the same exact theme, but under a users sub-domain. I guess the only thing I can do is convert it to v1.2.
May 3, 2009 at 12:37 am #44217Jeff Sayre
ParticipantBeLogical-
I am on skeleton component v1.1 and not v1.2.
Just to make sure, you do realize that we are talking about themes and not plugins here?
You are talking about the Skeleton Component for developing a custom plugin, not designing a custom theme. For a custom theme, you would want to use the Skeleton Theme.
Assuming that we are on the same page, then yes, there are significant differences between version 1.1 and version 1.2 of the Skeleton Component. You need to use the newest version. See the changes here: https://codex.buddypress.org/how-to-guides/creating-a-custom-buddypress-component/
May 2, 2009 at 11:54 pm #44214In reply to: The theme for this site
Andrea Rennick
ParticipantThere’s two.
And there’s a skeleton member theme here to start your own theme from.
May 2, 2009 at 11:46 pm #44213In reply to: WP and BuddyPress(WPMU)
Andrea Rennick
Participant” so we’re left with two choices: 1) Switch to WPMU/BP or 2) Install WPMU/BP in a subdirectory.
My first question is this: Am I right about our two choices above?”
Yes.
Switching the whole thing over to WPMU is actually not so bad. The biggest worry there is plugins. Depending on what ones they are, and which ones are a dealbreaker, you will need to test them somewhere ahead of time before even deciding which option to pick.
posts, comments, users, the theme itself and ad placement – ALL those can be *exactly* the same in WPMU.
“The only drawback we have with installing WPMU/BP in a subdirectory is that we’d lose the ability to pull in BP features onto the homepage of our current site such as recent blog activity, avatars, etc. Is that correct or is there some way for the two to communicate even if on separate installs?”
Actually, you can do that. We did it here on http://wanderlustandlipstick.com, a client site. Note it’s not a BP site, but the main site is a single WP install and the WPMU part is under /blogs/. With some lightweight custom code, we pulled in avatars & recent posts to the front of the main blog.
Overall, your choices are pretty much 50/50. The big kicker here is how you want your URLs to be formed in the end.
If you want or don’t care about an extra folder name in the URL where WPMU will live, then it may be “easier” to have it as an add-on, and share databases to share users.
Personally, I’d lean towards moving the whole site to WPMU. Do the move in a dev environment, then in a low-traffic time planned ahead with full notice, make the switch to the new WPMU site (at the same URL basically).
May 2, 2009 at 11:46 pm #44212In reply to: Stylesheet not loading for Default Member Theme
2698507
InactiveAnyone think .htaccess is the culprit to my Member themes display problem?
May 2, 2009 at 11:25 pm #44210In reply to: Stylesheet not loading for Default Member Theme
Paul Wong-Gibbs
KeymasterExactly
May 2, 2009 at 11:18 pm #44209In reply to: Stylesheet not loading for Default Member Theme
2698507
InactiveI think the skeleton is an unstyled CSS file to use for reference when building a custom Member theme. So it should look like there’s no CSS.
May 2, 2009 at 11:16 pm #44207In reply to: Stylesheet not loading for Default Member Theme
Ezd
ParticipantI have the same kind of problem with the ‘Members’, ‘Groups’ and ‘Blogs’ page. Its like these pages are not hooked up with the CSS. I only have this problem when using the latest Skeleton member theme thou. If I use the standard bpmember theme there\’s no problem. Why is that? Problems with the latest Skeleton theme on BP 1.0? :>
May 2, 2009 at 11:12 pm #44206Andrea Rennick
ParticipantYeah, it may need some further tweaking to grab the right URL.
May 2, 2009 at 10:23 pm #44204In reply to: Stylesheet not loading for Default Member Theme
2698507
InactiveIn addition to my CSS file not loading on Member profile pages
– I noticed that the Newest/Active/Popular ajax links aren’t loading either on Members widget on http://www.beerandblog.com/
– My images are uploading (I see them in the blogs.dir), but they aren’t displaying when called by a page.
Could these all be be due to .htaccess issues? Here’s my current .htaccess
RewriteEngine On
RewriteBase /
#uploaded files
RewriteRule ^(.*/)?files/$ index.php [L]
RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$1 [L]
# add a trailing slash to /wp-admin
RewriteCond %{REQUEST_URI} ^.*/wp-admin$
RewriteRule ^(.+)$ $1/ [R=301,L]
RewriteCond %{REQUEST_FILENAME} -f [OR]
RewriteCond %{REQUEST_FILENAME} -d
RewriteRule . – [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $1 [L]
RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $1 [L]
RewriteRule . index.php [L]
<IfModule mod_security.c>
<Files async-upload.php>
SecFilterEngine Off
SecFilterScanPOST Off
</Files>
</IfModule>
May 2, 2009 at 9:39 pm #44200In reply to: Default Blog Theme
Paul Wong-Gibbs
KeymasterYes, of course. You can do anything you want. Suggest you read https://buddypress.org/forums/topic.php?id=1632
May 2, 2009 at 9:33 pm #44198In reply to: Default Blog Theme
Tony Stark
ParticipantI suppose my question is, can a blog be created to look / inherit the CSS within the Theme your BuddyPress is actually using. When I create or get a user to do create a blog they actually get the standard style.
Hope this is clear…it has been a long day!
May 2, 2009 at 9:25 pm #44196belogical
ParticipantAndrea_r, this works really well to start off with. Two things I have noticed off the bat. #1) my custom component doesn\’t show up under this theme for some reason. I am on skeleton component v1.1 and not v1.2. Could that be the cause? #2) The links at the top (Blog, Members, Groups, Blogs) don\’t work properly. They are all formatted as username.domain.com/members instead of domain.com/members etc…
For #2, is my beta site messed up? Is it supposed to rewrite those to the proper URL or is that behaving normally? If that is the case, I will need to redo those links, correct?
May 2, 2009 at 9:05 pm #44189In reply to: Blog Avatar
Andy Peatling
Keymasterjust remove them in your theme if you don’t like them. Or – you could use the author’s avatar instead.
May 2, 2009 at 8:52 pm #44182In reply to: Stylesheet not loading for Default Member Theme
2698507
Inactive@DJPaul it does appear there…
May 2, 2009 at 8:27 pm #44177In reply to: Stylesheet not loading for Default Member Theme
Paul Wong-Gibbs
KeymasterAs per Andy’s comment, http://www.beerandblog.com/wp-content/bp-themes/bpmember/css/loader.php is returning 404. Usually if it’s a permission on the file system, you get a different error code sometimes.
Does that file exist in that path when you look in your FTP?
May 2, 2009 at 8:09 pm #44176In reply to: Stylesheet not loading for Default Member Theme
2698507
InactivePermissions set to 755, still not loading. Not sure about users and groups. Using an FTP client to change permissions. Logged in with the original account I got from host, which is pSek.com.
May 2, 2009 at 7:41 pm #44171In reply to: Stylesheet not loading for Default Member Theme
nicolagreco
Participantwhich user and which groups have permissions ?
permissions should be 755 and the users should be no root
May 2, 2009 at 7:34 pm #44170In reply to: Stylesheet not loading for Default Member Theme
2698507
InactiveThanks everyone for the quick replies!
@jeff I looked at the link you sent, but I’m not upgrading so I’m not sure it applies. I just downloaded BuddyPress this morning.
@DJPaul the themes are in wp-content/themes/ and the member theme in wp-content/bp-themes/
@andy the permissions on that file were 644. I changed them all the way to 777 with no change. What should the permissions be?
May 2, 2009 at 7:17 pm #44168In reply to: Stylesheet not loading for Default Member Theme
Andy Peatling
KeymasterCheck permissions on this file:
http://www.beerandblog.com/wp-content/bp-themes/bpmember/css/loader.php
it is returning a 404.
May 2, 2009 at 7:06 pm #44167In reply to: Stylesheet not loading for Default Member Theme
Paul Wong-Gibbs
KeymasterYou need to move the home theme to wp-content/themes/ and keep the member theme in wp-content/bp-themes/ (bpmember)
May 2, 2009 at 7:03 pm #44166In reply to: Stylesheet not loading for Default Member Theme
Jeff Sayre
ParticipantJustin-
I assume you’re running BuddyPress v1.0. If so, please carefully read the section entitled “Upgrading the Theme files” on this BuddyPress Codex page.
May 2, 2009 at 6:34 pm #44160Andrea Rennick
ParticipantActually, I just did this on a test bed. Took maybe ten minutes.
make a copy of the home theme and move it somewhere.
rename the folder to something obvious, like bp-blog-theme.
Edit style.css and change the theme name to be Blogs instead of Home.
Delete home.php.
move the new theme back into wp-content/themes/. Activate it under Site Admin -> Themes. Go to a member blog (you have a test blog, right?), under Appearance and activate the new BLOG theme.
Give it a whirl and let me know how you make out. There’s other regular WPMU plugins to enable the theme by default on a new blog. My fave: http://wpmudev.org/project/wpmu-blog-defaults. That way the blog creation part is seamless and looks well-integrated.
May 2, 2009 at 6:29 pm #44156In reply to: The theme for this site
2697291
InactiveAny clues when more themes will be available? I want to develop my own but it will be much easier to edit someone else’s than start from scratch.
May 2, 2009 at 6:20 pm #44155Jeff Sayre
ParticipantA few questions:
- Are you using the public release of BuddyPress–version 1.0?
- Are you using a custom theme?
- Did you read the section entitled “Upgrading the Theme files” in this BuddyPress Codex link?
-
AuthorSearch Results