Search Results for 'theme'
-
AuthorSearch Results
-
September 23, 2011 at 7:59 pm #120805
@mercime
ParticipantWhat theme are you using? Could be that it needs to be updated.
Re duplicate pages of Members, Forums, Activity and Groups – do they have the same content as the original pages with same name?
September 23, 2011 at 7:33 pm #120802In reply to: BuddyPress Members page now gives this error
rtysmith
MemberYea, with default theme, same issue, with activity stream deactivated
September 23, 2011 at 6:49 pm #120798In reply to: Problems with reply button on activity page
hugocontreras
Memberhi! I’m having the same problem using the theme Custom Community, which plugin was making conflict for you? thx for the help!
September 23, 2011 at 6:25 pm #120796@mercime
ParticipantYes, that’ll work. Works for me
September 23, 2011 at 6:22 pm #120794In reply to: Only default theme works with BuddyPress
@mercime
ParticipantBP 1.5 is a major release. closing 998 tickets of bug and enhancement reports. Theme/plugin devs are currently updating themes and plugins. In the meantime, you can also use a WP theme and install the BP Template Pack plugin to make your WP theme compatible with BuddyPress
September 23, 2011 at 6:14 pm #120793@mercime
Participant@kkradel bp.css is enqueued after your style.css and bp.css has this in stylesheet
`#wp-admin-bar .padder {
width: 95% !important; /* Line up the admin bar with the content body in this theme */
}`The easiest thing to do is to
1 – download a copy of bp.css https://plugins.svn.wordpress.org/bp-template-pack/tags/1.2/bp.css
2 – correct the width of #wp-admin-bar .padder to 100%
3 – upload to server in plugins/bp-template-pack to override old bp.cssSeptember 23, 2011 at 5:32 pm #120788In reply to: Buddypress 1.5 on multisite
Boone Gorges
Keymaster@seluvega Make sure that you have activated a theme other than BuddyPress Default on the main site.
September 23, 2011 at 5:00 pm #120785abutterworth
MemberSO I didn’t receive any answers on this but I did manage to struggle my way through and I will leave the solution here for those with the same question.
To add sub_nav links in buddypress 1.5 groups do the following:
1) bp-core-template.php
register the groups
///////////////
function bp_is_group_stock_quote() {
if ( bp_is_groups_component() && bp_is_current_action( ‘stock-quote’ ) )
return true;
return false;
}
//////////////////2) bp-group-loader.php
define the subnav item:
/////////////////
$sub_nav[] = array(
‘name’ => __( ‘Stock Quote’, ‘buddypress’ ),
‘slug’ => ‘stock-quote’,
‘parent_url’ => $group_link,
‘parent_slug’ => $this->current_group->slug,
‘screen_function’ => ‘groups_screen_group_stock_quote’,
‘item_css_id’ => ‘stock’,
‘position’ => 50,
‘user_has_access’ => $this->current_group->user_has_access
);
///////////////////////3) bp-groups-screen.php
define the action that clicking will elicit:function groups_screen_group_stock_quote() {
global $bp;if ( $bp->is_single_item ) {
// Refresh the group member count meta
groups_update_groupmeta( $bp->groups->current_group->id, ‘total_member_count’, groups_get_total_member_count( $bp->groups->current_group->id ) );do_action( ‘groups_screen_group_stock_quote’, $bp->groups->current_group->id );
bp_core_load_template( apply_filters( ‘groups_template_group_members’, ‘groups/single/home’ ) );
}
}The URIs above all go to the groups/single/home because there it loads the header etc and includes the body file depending on the action. So add your pages to that area and then create them in the your_theme/groups/single directory. For the above example I created theme/groups/single/stock-quote.php.
Cheers
September 23, 2011 at 4:45 pm #120784Prince Abiola Ogundipe
Participant@r-a-y, can i just add the following code to my child theme function.php and define my custom css in style.css as i dont want to use default theme css.
`if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;`i will like to use my custom css.
RegardsSeptember 23, 2011 at 4:05 pm #120779In reply to: [Resolved] Buddy Press Theme Intergration ???
@mercime
ParticipantSo if you’re on BP 1.5 and installed BP Template Pack 1.2, then you only need to update 11 files now. So if you require assistance on that end, open up your WP theme’s page.php and paste in pastebin.com, submit, and paste the generated URL here.
As for the second method, after creating those three new files, you need to make revisions in those files then upload to your active WP theme folder in server.
As for the bbPress template files, they look good in many themes but might need adjustment for some. I say one step at a time. Let’s get your theme BP-compatible.
September 23, 2011 at 3:02 pm #120768Boone Gorges
KeymasterIt looks like you haven’t set up your permalinks correctly, or that there is a problem with your .htaccess.
Go to Dashboard > Settings > Permalinks. Make sure that you have chosen an option other than the first option, and click Save. (Save your settings even if you don’t change them – just saving them can trigger things to work.)
If the site links still don’t work, check in the root of your WP installation for a hidden file called .htaccess. Is it there? What are its contents?
Do you happen to know what operating system your server is running?
September 23, 2011 at 2:40 pm #120767September 23, 2011 at 2:39 pm #120766zpg
MemberI did what I’ve read in the codex but still didn’t work.
Now I’ve got a fresh WP installation AND a fresh BP installation.
WP 3.2.1 BP 1.5 using BP default theme.still doesn’t work. can someone take a look and give me advise?
September 23, 2011 at 2:16 pm #120763In reply to: Buddypress 1.5 on multisite
Boone Gorges
KeymasterBuddyPress is a “network only” plugin. That means that you can only “network activate” it. But, the way BP works, you generally only show BP content on a single one of your blogs – we call that the “root blog”. By default, it is blog number 1, the main blog in your network. For this to work, just activate a BP-compatible theme (like BuddyPress Default).
If you want your community/BP content to be on a blog other than the main blog, you’ll have to define an alternative root blog. In wp-config.php:
`define( ‘BP_ROOT_BLOG’, 6 );`
where you replace ‘6’ with the id of your desired root blog.September 23, 2011 at 12:50 pm #120758In reply to: Login box Redirect to Registration Page (Resolved)
Asdrubal
Memberbuddypress > bp-themes > bp-default > sidebar.php
September 23, 2011 at 12:20 pm #120755In reply to: How To: Change your mystery man image
Patrik
MemberHi,
I see it has been a long time since this post was made, but I was wondering if this code is still working since the 1.5 upgrade. I have been using this wonderful function for many months and it has been working perfectly; yet ever since upgrading to 1.5, it no longer works for me (when placed inside my custom theme’s functions.php file).
Any ideas? Is anyone else having this problem? I’m now once again stuck with that annoying default mystery man : ) Thanks in advance!September 23, 2011 at 10:31 am #120751In reply to: Can’t Delete Default BuddyPress Theme
takuya
Participantbp-default is in BuddyPress plugin folder, you’ll need it to run BuddyPress. There’s super admin option for multiste to set which users can use which themes.
September 23, 2011 at 9:30 am #120745In reply to: I screwed up the CSS :( can anyone help?
Tammie Lister
ModeratorFirst up have you both checked that the themes you are using have been updated for BuddyPress 1.5?
September 23, 2011 at 6:01 am #120728In reply to: White screen of death when trying to activate 1.5
NicolaAvery
MemberThanks I’ll give that a go. Also deactivated other themes, installed bp-default theme manually without installing buddypress and that also went to a blank screen on the front end but not on the dashboard end. Then after the bp install it was all blank again. I haven’t checked the memory limits so will go and do.
September 23, 2011 at 2:46 am #120722In reply to: 1.5 Child Theme Not Working
alanchrishughes
ParticipantAll of the details are in this thread. I created a new folder in my themes folder, named it BP Child, copy and pasted what you have there to a style sheet named style.css inside of the them folder and directly in the root of the themes folder because I wasn’t sure if you just made a typo or not forgetting the theme name folder there
wp-content/themes/style.css
wp-content/themes/BP Child/style.cssThe font size never changed, I tried adding a background image, nothing….
September 23, 2011 at 2:24 am #120721In reply to: importing users from 1.2.10 to 1.5
THX 1138
Memberok figured what I could do, unfortunately almost all the plugins are useless now. some of theme like private buddypress is key, is there a way to keep profile pages offlimits to non-registered users?
My main question is this, I can set the media embed max width in the admin panel, and I can set in wp-config define(‘BPFB_OEMBED_WIDTH’, 200, true);
but videos still embed at full size, which means, that on the mobile site, using bp mobile, the video runs off the edge of people’s touchscreens. that’s it, I know no other way to have a safe transition to the new bp, which will should be called, due to all the changes, 2.0
that should be about it, I figured that i have to completely rebuild the site, once I have the compatible plugins set, I will update the ones on the remote server and remove the ones which don’t work, move my theme and hope to god I don’t loose my 400+ registered members….ugghSeptember 23, 2011 at 1:39 am #120718In reply to: Widgets are not working BuddyPress 1.5
Chido
MemberBP Default. Native WordPress themes, like the login form that used to be in the right is not showing in this version
September 23, 2011 at 12:54 am #120714In reply to: Widgets are not working BuddyPress 1.5
@mercime
ParticipantWhat theme are you using? Which widgets – native WP or BP members/groups – are not sticking to sidebar/footer widget area?
September 23, 2011 at 12:01 am #120707In reply to: Activity stream, nothing records
everydayreviews
Memberit was working with the previous BP. not working with 1.5.
I’m using a theme called InReviewSeptember 22, 2011 at 11:57 pm #120706In reply to: Activity stream, nothing records
@mercime
ParticipantBP version? Change to bp-default theme.
-
AuthorSearch Results