Search Results for 'theme'
-
AuthorSearch Results
-
December 15, 2010 at 1:44 am #100537
In reply to: Send-to autocompletion is broken
KatieBen
MemberDitto here, I’m not using the default theme, and I don’t have the friends component disabled..
December 15, 2010 at 1:30 am #100536In reply to: How to upgrade my theme for buddypress
@mercime
ParticipantWhat karmatosed said. For #1 with Template Pack, make sure you have “ before ending “ tag in `footer.php`
December 15, 2010 at 1:20 am #100534r-a-y
KeymasterCan you try activating the BuddyPress Default theme to see if these problems go away?
Re: #4 – I just signed up for your site and it did not redirect me to the control panel after logging in.
December 14, 2010 at 11:54 pm #100526In reply to: Installing Buddypress
Andrea Rennick
Participant“My current theme is supported by buddypress & I’ve installed the template pack in order to resolve this matter.”
If your current theme already supports buddypress, you DO NOT NEED the template pack.
that plugin is *only* used if your theme does *not* have BP support. Likely that’s why you’re getting errors.
December 14, 2010 at 11:28 pm #100513In reply to: Using the existing component in members theme
Andrea Rennick
ParticipantIf you wanted to replicate all the BP sections on each blog, you can do this:
Allow BuddyPress to function on multiple blogs of a WPMU installation, not just on one root blog:
`define ( ‘BP_ENABLE_MULTIBLOG’, true );`They still have to register at the main site.
December 14, 2010 at 11:14 pm #100507In reply to: post installation error mission!
Lisa Sabin-Wilson
ParticipantDoes not look like you’re using a BuddyPress compatible theme. The default TwentyTen theme is not BP compatible, out of the box.
Try making the your current, activated theme compatible with BuddyPress by using the BuddyPress Template Pack plugin:
https://wordpress.org/extend/plugins/bp-template-pack/Or, create a child theme for BuddyPress:
https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/Either way, your theme must be BP compatible in order to utilize the BP features.
Good luck!
December 14, 2010 at 10:57 pm #100498In reply to: New WP theme framework will have BP support
Andrea Rennick
Participant
And it is good to state so, because it also bugs me when someone shows up complaining that it’s not free. 
here’s hoping more theme authors jump on the bandwagon and do the needed work to add support for BP. It’s just better for us all then.
December 14, 2010 at 10:46 pm #100489In reply to: How to upgrade my theme for buddypress
Tammie Lister
ModeratorThere are a few options open to you:
1. Use the template pack – this is due an update : https://buddypress.org/community/groups/bp-template-pack/
2. Get a free BuddyPress theme : https://buddypress.org/extend/themes/
3. Get a premium theme
4. Pay for a developer to adapt your theme: https://buddypress.org/community/groups/bp-jobs-board/December 14, 2010 at 10:45 pm #100488In reply to: Where did user interactions go?
r-a-y
KeymasterCan you try overwriting what is in your /buddypress/bp-themes/bp-default/ folder from the manual package?
Do the buttons show up when you use the bp-default theme?
December 14, 2010 at 10:38 pm #100485In reply to: Post Thumbnail in BP-Default Theme
r-a-y
KeymasterSounds like you have the image working, but you need to get acquainted with CSS, especially the float declaration.
Try fooling around with this in your stylesheet:
`
.entry .thumbnail {float:left; padding-right:1em;}
`December 14, 2010 at 10:31 pm #100480In reply to: Post Thumbnail in BP-Default Theme
Tammie Lister
ModeratorWhilst I’m not familiar with the plugin I have another suggestion that you use built in featured images that comes with WordPress. Forgive me if you have other reasons for using that plugin but maybe this will work for you.
You can add post thumbnails using featured posts like this for instance in functions.php (adjust size according to what you want):
`if ( function_exists( ‘add_theme_support’ ) ) {
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 210,160, true );
}`Then in the code:
` `
There are many ways to skin the thumbnail cat though this link may help:
https://codex.wordpress.org/Function_Reference/the_post_thumbnail
December 14, 2010 at 10:07 pm #100476In reply to: Where did user interactions go?
cmccarra
ParticipantNo, I don’t think so. These are the only files I have in the child theme:
– _inc/images/whateverimages…
– child-functions.php
– footer.php
– header.php
– index.php
– sidebar.php
– single.php
– style.cssDecember 14, 2010 at 2:41 am #100438In reply to: missing stylesheet
@mercime
Participant== hmmm I paid for this and get charged monthly somebody please give us the fix. ==
@dougison WP and BP are free downloads, perhaps you mean you’re paying for your hosting?In any case, did you use the auto-install of BP? Then try to upload BuddyPress plugin again via FTP or cPanel. After activating BuddyPress, you should see the bp-default theme when you go to dashboard > Appearance > Themes.
December 13, 2010 at 8:51 pm #100414r-a-y
KeymasterThere’s a bug in the ‘bp_get_the_profile_field_datebox’ that’s preventing overriding the date field.
See – https://trac.buddypress.org/ticket/2947.—
@bobsie – To override the year value temporarily, you’ll need to patch /buddypress/bp-xprofile/bp-xprofile-templatetags.php:
https://trac.buddypress.org/attachment/ticket/2947/2947.001.patch (only lines 457-534 are important).Once you’ve made those changes, add the following to your theme’s functions.php:
`
function my_datebox_field ($html, $type, $day, $month, $year, $default_select ) {// change your max year here
$year_max = 2013;/* Check for updated posted values, but errors preventing them from being saved first time */
if ( !empty( $_POST ) ) {
if ( $day != $_POST )
$day = $_POST;
}if ( !empty( $_POST ) ) {
if ( $month != $_POST )
$month = $_POST;
}if ( !empty( $_POST ) ) {
if ( $year != date( “j”, $_POST ) )
$year = $_POST;
}$html = ”;
switch ( $type ) {
case ‘day’:
$html .= ‘–‘;for ( $i = 1; $i < 32; $i++ ) {
if ( $day == $i ) {
$selected = ‘ selected = “selected”‘;
} else {
$selected = ”;
}
$html .= ” . $i . ”;
}
break;case ‘month’:
$eng_months = array( ‘January’, ‘February’, ‘March’, ‘April’, ‘May’, ‘June’, ‘July’, ‘August’, ‘September’, ‘October’, ‘November’, ‘December’ );$months = array( __( ‘January’, ‘buddypress’ ), __( ‘February’, ‘buddypress’ ), __( ‘March’, ‘buddypress’ ),
__( ‘April’, ‘buddypress’ ), __( ‘May’, ‘buddypress’ ), __( ‘June’, ‘buddypress’ ),
__( ‘July’, ‘buddypress’ ), __( ‘August’, ‘buddypress’ ), __( ‘September’, ‘buddypress’ ),
__( ‘October’, ‘buddypress’ ), __( ‘November’, ‘buddypress’ ), __( ‘December’, ‘buddypress’ )
);$html .= ‘
‘;for ( $i = 0; $i < 12; $i++ ) {
if ( $month == $eng_months[$i] ) {
$selected = ‘ selected = “selected”‘;
} else {
$selected = ”;
}$html .= ” . $months[$i] . ”;
}
break;case ‘year’:
$html .= ‘—-‘;for ( $i = $year_max; $i > 1899; $i– ) {
if ( $year == $i ) {
$selected = ‘ selected = “selected”‘;
} else {
$selected = ”;
}$html .= ” . $i . ”;
}
break;
}return $html;
}
add_filter( ‘bp_get_the_profile_field_datebox’, ‘my_datebox_field’, 10, 6 );
`December 13, 2010 at 7:47 pm #100407In reply to: Using the existing component in members theme
manimaranvel
MemberI figured out the problem it is because of “bp_core_get_userlink” image path
December 13, 2010 at 6:00 pm #100401In reply to: Using the existing component in members theme
manimaranvel
MemberJust now I have tested the plugin .
Only the name field is working and avatar is not working proper
please direct me how to fix this
December 13, 2010 at 2:44 pm #100388In reply to: Using the existing component in members theme
manimaranvel
MemberThanks for the reply @mercime
I Will try this and come back If I hava trouble
December 13, 2010 at 1:59 pm #100386bobsie
MemberThanks r-a-y
Sorry I’m new to this side of things.
I’m taking your sample code and trying to add it to functions.php in my theme.
I thought I need to take the apply_filters line and add it where the comment is? But that breaks everything. I’m unclear how/when to replace the $variables with actual values?
Is it possible to give me the sample code complete with variables filled in so that the dateboxes all show the current year and an additional three years ahead. I.e. right now they’d show 2010, 2011, 2012, 2013?December 13, 2010 at 12:59 pm #100384guigoz
MemberIf anyone is concerned…
1) In bp-custom.php
`function My_Function ($user_id) {
global $bp;
$type_member = xprofile_get_field_data( ‘FIELD NAME’, $user_id );
if($type_member == ‘FIELD VALUE’) {
return true;
} else {
return false;
}
}`2) Somewhere in your theme to display something to this type of member :
`
loggedin_user->id)) : ?>
HTML TO DISPLAY
`December 13, 2010 at 3:42 am #100369@mercime
Participant@testador thanks for elaborating on what you’ve done so far.
– Check out the Ride Oregon site in BP.org showcase – https://buddypress.org/showcase/
– I recall seeing a travel or tourism site here before – http://www.bpinspire.com/Re themes, I prefer to create my own themes – either child themes of bp-default theme or use BP Template Pack for a couple. It depends on a lot of factors. Here’s a simple walkthrough for BP Template Pack for reference – https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/
Re media plugin, I’ve been using the BP Gallery plugin, (premium) since early 2010 to date. Preference is hosting own media rather than having it hosted at Kaltura/Cincopa servers.
Good luck
December 13, 2010 at 2:50 am #100367Kingpin JRela
ParticipantI can’t help you, but can I see your site?
I’m a suffusion theme user as well.
December 13, 2010 at 1:58 am #100364testador
Member@mercime, I agree with everything you say. I’ve installed and tested the BPtemplate pack, as well as others, and experimented with theming.
I’m looking forward to find good examples of sites using BP as a cityguide. I’ve designed a concept that uses the elements outlined in the original post. Therefore, maybe some readers have experience with one or two points in there, or can think of an example of a site or a plugin that may help.
Like I mentioned, it is a concept scenario, useful to see what BP users have done in the past, and continue experimenting and learning BP.
It certainly is not a simple BPWP install. And I’ve been checking up plugins for several months now. Still searching for suggestions and experience that BP users have had with plugins related to the points i made on the original post. Thanks for your comments regarding themes. What has your experience with BP been like? any recommendation on plugins for reviews and media albums? I’ve been checking up the kaltura as well as the cincopa plugins, but still, I’ve not seen many options yet…December 13, 2010 at 1:54 am #100363In reply to: Is moving Buddypress easier/possible??
@mercime
Participant@ddgdaily – on the Thesis theme, sorry, I don’t use it. I recall some Thesis users a while ago who mentioned getting info from Thesis support forums to get BP compatibility on using the BP Template Pack.
Why not just backup database tables and server files then go maintenance mode for an hour to test BP in site? Use bp-default theme which has the regular WP template files but souped up for BuddyPress and see how it goes.
Or, export XML from your site, and install WP with BP it locally in your computer to test it out.
December 13, 2010 at 1:03 am #100360In reply to: Using the existing component in members theme
@mercime
Participant@manimaranvel BuddyPress can only be activated once in either the main site or a secondary blog of a WP Multisite installation – there is no BP multisite at this time. If you allowed your members to create own blogs and then want to show the member profile in his/her blog, you can use a plugin – https://wordpress.org/extend/plugins/bp-profile-widget-for-blogs/
December 13, 2010 at 12:42 am #100359@mercime
Participant99% who help out here in the BP forums are volunteers. On a very rare day, someone might come into the forums and make a long long list of all that they need for a BP site and get spoonfed with all the answers in one go, though I haven’t seen that happen totally. I know you expect answers that’s why you go to the forums but on our end, we expect that you did some research on your own as well. If you want simple BP/WP install, it’s all easy (assuming you have good server). But If you want fully customized BP install, the learning curve is medium high if you’ve got WP experience.
BP Codex – https://codex.buddypress.org/home/
BP compatible plugins – https://buddypress.org/extend/Back to Woo’s City Guide Theme, I only mentioned that theme because I saw it just before I saw your post here – CITY GUIDE. Also, as I mentioned before in post above, you would need to install BP Template Pack, make necessary changes, and if you have HTML/CSS/WordPress theming knowledge, it’ll be a breeze. You could choose whatever WP theme you want and install BP Template Pack or get a free BuddyPress theme or go for a premium BuddyPress theme with free support.
-
AuthorSearch Results