Search Results for 'theme'
-
AuthorSearch Results
-
November 28, 2010 at 10:48 pm #99420
In reply to: Child Themes
Tekuan Coleman
Memberok, i will check there. thank you
November 28, 2010 at 10:31 pm #99417In reply to: Child Themes
Hugo Ashmore
ParticipantPlease look through the BP documentation (codex) read up on the child theme guide and the template pack guide which helps you convert WP themes to work with BP pages. If you require further help after reading those or have further questions post back in this thread.
November 28, 2010 at 6:59 pm #99406kkeller22
MemberHello,
extended profiles is enabled. I am using the default buddypress theme. I have permalinks set to non-default. Does it have anything to do with my blog not being my main page (instead of pangeastable.com it is pangeastable.com/my-palate). I’m thinking it may have something to do with the permalinks but I have no idea where to begin correcting this. I’m using yahoo hosting so you can install wordpress through our yahoo admin center. I also tried installing wordpress manually and ran into the same problem.
November 28, 2010 at 6:52 pm #99404In reply to: SideBar Whos Online and Recently Active
Virtuali
Participant@eor, I do have a solution for you! Go into your theme’s custom CSS file, and add the following CSS.
Global Elements
*/}
h1, h2, h3, h4, h5, h6 {
margin: 5px 0 15px 0;
}p { margin-bottom: 15px; }
p:last-child { margin-bottom: 0; }hr {
background-color:#E7E7E7;
border:0 none;
clear:both;
height:1px;
margin: 20px 0;
}img.avatar {
float: left;
border: 2px solid #eee;
}img.avatar {
background: #ffffff;
padding: 4px;
border: 1px solid #ddd;
/* Round Corners (native in Safari, Firefox and Chrome) */
-moz-border-radius: 6px;
-webkit-border-radius: 6px;
/* Add the Shadow */
-moz-box-shadow: 2px 2px 2px #dddddd;
-webkit-box-shadow: 2px 2px 2px #dddddd;
}November 28, 2010 at 5:20 pm #99397In reply to: [Resolved] Sidebars left and right in a fluid theme
pcwriter
ParticipantThanks for the suggestion. I had looked at some grid frameworks, but didn’t want to go that route for this theme. I’m keeping it in mind for future projects though.
@bowromir
Bingo! Silly me and my thick head
I was working with fixed-width sidebars. Percentages didn’t even occur to me for them. Your suggestion got me going where I wanted to go with my fluid theme. Thanks a bunch!
November 28, 2010 at 4:39 pm #99394In reply to: Groupblog Plugin questions
David
ParticipantI final got what I was looking for. Here is the code if anyone wants to try it or use it. Paste it in the functions.php of your child themes. What it does is removes the orginal function for the “My Blogs” link in the admin bar and I then made my own function that calls that original function only if the user has a blog. Thus anyone that is just a subscriber to the site will not see the “My Blogs” link in the admin bar (to confuse them).
/* Removes the function from the buddypress/bp-core/bp-core-adminbar.php file in buddypress plugin*/ remove_action(‘bp_adminbar_menus’, ‘bp_adminbar_blogs_menu’, 6); /*reset the “MY Blogs” link function so that it only shows for users that have blogs and not subscribers*/ function bp_adminbar_mynew_blogs_menu() { global $bp; if ( !is_user_logged_in() || !function_exists(‘bp_blogs_install’) ) return false; if ( !$blogs = wp_cache_get( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, ‘bp’ ) ) { $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id, true ); wp_cache_set( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, $blogs, ‘bp’ ); } echo ‘ loggedin_user->domain . $bp->blogs->slug . ‘/”>'; _e( ‘My Blogs’, ‘buddypress’ ); echo ‘‘; echo ‘ ‘; if ( is_array( $blogs ) && (int)$blogs ) { $counter = 0; foreach ( (array)$blogs as $blog ) { $alt = ( 0 == $counter % 2 ) ? ‘ class=”alt”‘ : ”; $site_url = esc_attr( $blog->siteurl ); echo ‘ ‘; echo ‘‘ . esc_html( $blog->name ) . ‘‘; echo ‘ ‘; echo ‘ ‘ . __( ‘Dashboard’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘ . __( ‘New Post’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘ . __( ‘Manage Posts’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘ . __( ‘Manage Comments’, ‘buddypress’ ) . ‘ ‘; echo ‘ ‘; echo ‘ ‘; $counter++; } } $alt = ( 0 == $counter % 2 ) ? ‘ class=”alt”‘ : ”; if ( bp_blog_signup_enabled() ) { echo ‘ ‘; echo ‘root_domain . ‘/’ . $bp->blogs->slug . ‘/create/”>’ . __( ‘Create a Blog!’, ‘buddypress’ ) . ‘‘; echo ‘ ‘; } echo ‘ ‘; echo ‘ ‘; } /*checks to see if the logged in user has any blogs. Saves the array values to $blogs and then saves the blog count to $blogcount. The IF statement then will be true if the value is 1 or more thus showing the link in the admin panel for the “My blogs”*/ $blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id ); $blogCount = ($blogs); if ( bp_core_is_multisite() && $blogCount >= 1){ add_action( ‘bp_adminbar_menus’, ‘bp_adminbar_mynew_blogs_menu’, 6 ); }If anyone has a better (cleaner) way to do this please I would love to see it. I am just in the early stage of learning php so any help would be great. Thanks
November 28, 2010 at 4:29 pm #99391chouxpastry2002
Participantit works on my hosting server was not working on my xamp on my local machine.
November 28, 2010 at 1:26 pm #99390In reply to: [Resolved] Sidebars left and right in a fluid theme
Bowe
Participant@pcwriter why don’t you just use percentages? If you have a fluid width and set the width of the negative margin-right and the content width.
For example:
div#sidebar {
width: 25%;
float: left;
}div.content {
float: right;
margin-right: 26%;
}The code above won’t work, but it’s to give you an idea!
November 28, 2010 at 4:33 am #99383Kevin Murray
ParticipantThere seems to be something wrong with the custom header process with the buddypress theme. I set up images with 1250 × 125 pixel dimensions, but they are then cropped and expanded, so part of the image is missing and the resolution is lowered. Most frustrating. Has anyone found this?
November 28, 2010 at 1:34 am #99376In reply to: [Resolved] Sidebars left and right in a fluid theme
modemlooper
ModeratorHave you tried one of the grid frameworks? I’ve used 960 fluid.
November 27, 2010 at 8:48 pm #99365In reply to: Group settings create
Robert
ParticipantI activate orginal theme from buddypress and ………..
http://awesomescreenshot.com/05b3zo315
other idea ?November 27, 2010 at 6:07 pm #99354In reply to: Domain.com and BP
Virtuali
Participant@xiayou, from looking at your website, it looks like you are using a custom theme. The first thing that comes to mind, is Are you using the BP template pack?
Are you using a host that is free, or do you have a subscription?
If you have a subscription, it is most likely not the host, more likely conflicting plugins, or a theme that just has a bad bug.
Try switching to the BP default theme to see if the problem persists, so we can knock off the possibility that it is the theme.
November 27, 2010 at 5:56 pm #99349In reply to: Help with inserting photo’s into activity feed
Virtuali
ParticipantYes, I do have the problem, except it does not overlap the sidebar. It is a flaw with the plugin, because it is meant for a buddypress default theme.
For your sake since it is overlapping, try going into the plugin css, and setting the right margin position to “hidden”.
Another option is to disable the sidebar in the right, but you might not want to do that option.
You also can go into the easy albums forum, and search on similar topics to this issue.
November 27, 2010 at 5:24 pm #99342In reply to: Group settings create
Virtuali
Participant@robert, If this happened just recently, there is a high chance that there is a conflicting plugin. It is usually not the php file that is incorrect. First, try deactivating all plugins that relate to buddypress, and see if the problem persists. (deactivating will not delete settings)
If you have done that, and it is still not working, try installing the BP template pack again. This will recreate the template files, such a groups, into your custom theme again.
November 27, 2010 at 5:15 pm #99341Virtuali
ParticipantYou can get all the styling for you custom theme in /plugins/buddypress/bp-themes/bp-default/inc/css/default.css
In order for it to take affect in your theme you need to add “/* Inherit the default theme styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );” into your custom css page.November 27, 2010 at 5:09 pm #99340In reply to: [Resolved] Sidebars left and right in a fluid theme
pcwriter
ParticipantRats! I thought I had it. Putting more widgets in the sidebar to test, another puzzle popped up:
By adding position:absolute; to the sidebar, it no longer increases the height of the content div if it’s longer. Back to the drawing board…
November 27, 2010 at 4:50 pm #99339vanisia
Memberthanks for your help once again! by any chance, would you know how to change the styling for the profile page?
the bp theme has the data in zebra styling which i am trying to have for my current. the strange is, i did use the table css from the bp theme.
November 27, 2010 at 4:01 pm #99338In reply to: [Resolved] Sidebars left and right in a fluid theme
pcwriter
ParticipantLol…
After hours of puzzling this over, I finally ask a question in this forum, and then inspiration hits me.
Solved the puzzle with a simple margin-left:0; and position:absolute;November 27, 2010 at 11:45 am #99330In reply to: Group settings create
Robert
ParticipantI use a custome theme
Version 1.2.6
just recently..I edit a lot file from theme but it was working, now i try to replace groups file template with originals but.. nothing..
Here my create.php
http://jump.fm/GFOLNNovember 27, 2010 at 7:26 am #99325In reply to: Group settings create
Virtuali
ParticipantTo help solve your problem, you need to list some more information.
Are you using the Buddypress default theme, or a custom theme?
What version of Buddypress are you using?
Has this problem always been there, or just recently?November 27, 2010 at 7:23 am #99324In reply to: I need a tutorial of Citizen Kane Theme
dragosh
ParticipantHow can I set-up a drop-down menu for the main navigation?
For example, I want to put Activity, Members, Groups, Forum under Community.Thank you,
D.November 27, 2010 at 7:21 am #99323Virtuali
Participant@kkeller22,From viewing your site, it may look like you have not enabled some features in the WP-Admin.
Is the “Extended Profiles” enabled in your “Component Setup” In Wp-Admin? Do you have Buddypress Template Pack Plugin Installed? (if not using default theme)
If it is, always check for plugins that may be causing the problem. If that is not it, tell me, and we can work on going inside the html structure of your website
November 26, 2010 at 6:29 pm #99270Virtuali
Participant@hnla, sorry, by “BB” I mean BP. And no, I do not have a separate copy of Buddypress. All I did to test it out is deactivate the BP template pack, and activate the BP Default Theme, thinking that would for-sure fix the problem. It did not fix the problem, checking off the list that it is not the theme that is causing the problem. Another Solution I did try was deleting buddypress plugin, and completely reinstalling it. Still does not fix the problem. I have set up a new installation for the forums several times, and I am just so lost on where to go!!!

More Information:
What do you mean by site setup? (I will list anything)
I am using Buddypress version: 1.2.5.2
Arras Theme Version: 1.4.3.1
I am using Godaddy Hosting. Godaddy Interface.
Buddypress Related Plugins:
BP-NotificationWidget
BP Group Control
BP Group Documents
BP Group Reviews
BP GTM System
BP Profile Search
BuddyPress Announce Group
BuddyPress Better Pagination
BuddyPress Community Stats
BuddyPress Group Email Subscription
BuddyPress Group Tags
BuddyPress Like
BuddyPress Links
BuddyPress Moderation
BuddyPress Share It
Easy Albums – Buddypress users create and share images, video and audio albums – the easy way.
Enhanced BuddyPress Widgets
External Group Blogs
RS Buddypress Activity Refresh
TDLC Birthdays
User Name Availability Checker for wordpress/buddypress(Yes, I did try deactivating them all)
November 26, 2010 at 4:43 pm #99265In reply to: Is Platform a buddypress theme?
Hugo Ashmore
ParticipantSorry have no idea but it shouldn’t be hard to determine, download it and check it’s stylesheet comments, or even try and install it you should soon know if it’s BP compatible.
November 26, 2010 at 4:28 pm #99262In reply to: Is Platform a buddypress theme?
Ekine
ParticipantThank you for helping out. So I guess it is just a “normal” wordpress theme.
-
AuthorSearch Results