Search Results for 'theme'
-
AuthorSearch Results
-
September 4, 2011 at 3:46 pm #119551
In reply to: Can I put a logo in the defult theme
ewebber
Participant@naijaping you’re probably best creating the logo in the size you want it to display and creating a .png with a transparent background – you should try not to use css to change the size of it
September 4, 2011 at 2:15 pm #119550In reply to: Can I put a logo in the defult theme
Prince Abiola Ogundipe
Participant@mercime , put slash did not work aswell but declaring the whole path like this works well
<h1 id="logo"><a href="" title=""><img src="http://www.mysite.com/themes/mychildtheme/_inc/images/2.jpg" /></a></h1>Any idea on how to style the width and height of the logo and to declare the logo background as transparent.
sorry to disturb
September 4, 2011 at 12:20 pm #119546In reply to: Different background image for bp components
ewebber
ParticipantGlobally? You’d probably need to allow divs in your theme, then define styles for them
September 4, 2011 at 10:24 am #119536In reply to: be able to post onto all members activity?
Paul Wong-Gibbs
KeymasterBuddyPress doesn’t use Facebook’s wall idea. It’s more like Twitter; you need to @mention them. The default theme has a “public message” button when viewing another user’s profile; this is a shortcut and it provides the @mention for you.
September 4, 2011 at 7:55 am #119530In reply to: be able to post onto all members activity?
pengume
Participanthmm a post box on every wall? maybe something happened to mine? It is not there even when I switch to the buddypress default theme. I will do some more testing. Thanks for a response always appreciated!
September 4, 2011 at 12:23 am #119515@mercime
ParticipantSeptember 3, 2011 at 9:28 pm #119510THX 1138
MemberActually I stumbled across this question while spending several hours last night looking for the answer on the infamous Group Avatar step error message, after seeing there were as many different answers as there were questions, and not finding the solution (and doing what each answer suggested), I decided not to fight it. I don’t know if your question stems from this type of error or simply you’ve come to realize the group is created after the first step (as you said), but rather than using php or a core hack,etc, etc, I just removed the upload buttons and text of the avatar step using CSS, essentially users who create the group will consider it a default avatar, not get thrown off by an error message and click through the process; they then do any editing afterwords. Editing the avatar after the fact doesn’t throw any errors as it does when creating the group.
In my case, I know it’s a child theme problem and having a static home page, even though I followed the buddypress docs to a t. Didn’t want to give up the home page for the buddypress default, so that was my solution. it’s fairly painless and works.September 3, 2011 at 7:55 pm #119497In reply to: text align moved from left to center
alex
Participantok that was strange – i had to edit my original style sheet to get that center out i was trying to find it on my child theme
thanks again for your helpSeptember 3, 2011 at 6:38 pm #119491In reply to: Remove search box from header in Default bp theme
Steve Bruner
Participant@tommyhoang what says your “footer and header are ready to be used as widgets.”? Did you place the proper code in functions.php?
September 3, 2011 at 3:44 pm #119472alexwrld
MemberAnybody around?
September 3, 2011 at 10:51 am #119468jonnyauk
ParticipantBUMP – Sorry – anyone got any tips on this – I really don’t want to hack it out of the core code, but really need to remove this step in the group creation process. It’s obviously easy enough not to display the Avatar as the display of this is at ‘theme’ level – but not the actual step in the group creation process (unless I’m wrong?).
September 3, 2011 at 7:10 am #119466In reply to: Remove search box from header in Default bp theme
tommyhoang
Member@sbruner, okay that second article was a lot more easy to follow. so now it says my footer and header are ready to be used as widgets. but when i got to wp-admin/apperance/widgets, i only see the menu for sidebar widgets, shouldnt there be a footer and header as well?
September 3, 2011 at 12:03 am #119465In reply to: Cannot Create new Groups
guileshill
MemberYes, but I would expect to see it also as an option from the other menu or header bar, so will users I suspect. Is that not right? If this is the only way to get to that function it seems a very fragmented approach to the interface.
The other problem is that when using the other theme the sign up does not create a new user, but with the standard theme it seems ok.September 2, 2011 at 10:46 pm #119464In reply to: Ajax not working in BP 1.5 with custom theme
valuser
Participantor try the bp template pack download at https://github.com/boonebgorges/bp-template-pack
September 2, 2011 at 10:29 pm #119463In reply to: Cannot Create new Groups
@mercime
Participant@guileshill I see that you’ve changed to bp-default theme. Go to http://artsnet.co/groups/ – do you see the “Create Group” link beside page title “Groups Directory”?
Anonymous User 96400
InactiveThis site here is not a sandbox. It’s not meant to test things out. That would be http://testbp.org, as you can see from the theme, for example. testpb runs the default theme, while we have a more or less functional custom theme here

Install BuddyPress in a subdomain or, better locally on your home computer, and test out what it can do and what it can’t do. testbp is good in that you can see what you can do as an end user, but you won’t know what you can adjust as a site admin.
September 2, 2011 at 8:53 pm #119457In reply to: Cannot Create new Groups
guileshill
MemberI don’t mean to hijack this conversation and of course will start a new thread if preferred but I have exactly the same issue. Logging in as admin or as user makes no difference. The install is the latest version of both BP and WP (its a fresh install on a test address). The site is at artsnet.co. The theme is called Traject, a fairly complex set up, but the adapted BP files seem to be OK. There are no plugins working except the WPMU updates.
September 2, 2011 at 6:17 pm #119449Tammie Lister
ModeratorIf you want to use the child style yes that’s what you need to do
September 2, 2011 at 3:34 pm #119439In reply to: BP 1.5 – Wierd bug with CSS loading a child theme
sdls
Membercheers !!!! @johnjamesjacoby and @mercime
September 2, 2011 at 12:10 pm #119436Quint
Participant@mercime. Thanks!
Okay, that referenced information is what I stared at for a long time (I’m really new at this…) and the following is what I came up with:
`function bp_dtheme_enqueue_styles() {
// Bump this when changes are made to bust cache
$version = ‘20110804’;// Default CSS
wp_enqueue_style( ‘bp-default-main’, get_template_directory_uri() . ‘/_inc/css/default.css’, array(), $version );wp_enqueue_style( ‘bp-child-style’, get_stylesheet_directory_uri() . ‘/style.css’, array(), $version );
// Right to left CSS
if ( is_rtl() )
wp_enqueue_style( ‘bp-default-main-rtl’, get_template_directory_uri() . ‘/_inc/css/default-rtl.css’, array( ‘bp-default-main’ ), $version );
}
add_action( ‘wp_print_styles’, ‘bp_dtheme_enqueue_styles’ );`You may notice that in the second enqueue statement, I used `get_stylesheet_directory_uri()` to pull the child’s directory. Is that correct? No where in the referenced information does it use that function, only `get_template_directory_uri()` which presumably pulls the parent directory. Given that the directory function I used was not in the referenced information, I wonder if there is alternative, straightforward way that a seasoned developer would use.
September 2, 2011 at 11:54 am #119435In reply to: Remove search box from header in Default bp theme
Quint
Participant@sbruner, apparently the function ‘bp_search_form_enabled’ has been deprecated in BP 1.5:
http://phpxref.ftwr.co.uk/buddypress/nav.html?_functions/index.html
September 2, 2011 at 10:12 am #119433@mercime
Participant@qrahaman – to post code here, you have to wrap it with backticks as seen within the parentheses ( ` )
We have initial docs on styling for BP 1.5 https://codex.buddypress.org/releases/1-5-developer-and-designer-information/
September 2, 2011 at 10:03 am #119432@mercime
ParticipantWP/BP versions? What theme are you using? Better yet, site URL?
September 2, 2011 at 9:50 am #119431In reply to: How do i let users upload their own themes?
@mercime
ParticipantYes. If a user bought a premium theme or created his own theme, the user can email the theme to you and you can upload and activate it for use in that specific user’s blog only. No problem.
Note however that it is the responsibility of Network Admin to check out that theme first for security holes, deprecated tags, etc. before uploading it to server.
September 2, 2011 at 7:59 am #119428In reply to: BP 1.5 – Wierd bug with CSS loading a child theme
John James Jacoby
Keymaster@simon_said – exactly right. Sorry I wasn’t more clear.

-
AuthorSearch Results