Search Results for 'theme'
-
AuthorSearch Results
-
May 20, 2012 at 6:46 pm #134802
Architect
MemberThe other warning which doesn’t have to do with themes :
Warning: Cannot modify header information – headers already sent by (output started at /home/swotong/public_html/bluewhalefamily.com/wp-content/themes/frisco-for-buddypress/functions.php:270) in /home/swotong/public_html/bluewhalefamily.com/wp-includes/pluggable.php on line 866
This seems to be solved after I go to the line that cause error
header(“Location: $location”, true, $status);
I just change the above ‘true’ into ‘false’ and this warning haven’t appeared so far…I don’t really what I’m doing though…Really appreciate it if some one can tell me what this line mean and if that’s the right way to solve the problem..
Thank you!
May 20, 2012 at 6:44 pm #134801Architect
MemberHi Paul,
I just deleted Frisco and download, install it again. Now my main site is working fine. However the users on my site, because they each use different themes, their own page are still showing those warnings… These themes are somehow ‘polluted’ with this code:
`<?php
include_once (‘includes/custompost.php’);
?>`
which is inserted at the end of the functions.php file. Meanwhile, there are some themes that aren’t polluted and I find they have a function folder in their theme folder which I assume is the reason they are not polluted..Does anyone know what the above code mean and do I have to clean every one of my theme?
May 20, 2012 at 6:12 pm #134800In reply to: Change colors of top navigation bar
@mercime
ParticipantDon’t know what your theme is. Usually, you make the changes in your theme’s style.css file. Get Firebug, a Firefox add-on, to help you with your style changes.
May 20, 2012 at 6:10 pm #134799@mercime
ParticipantI see you’re requiring people to register in your site to download the division template pack. You could post in forums of division theme for those who purchased the theme
May 20, 2012 at 12:48 pm #134795Paul Wong-Gibbs
KeymasterThat error might be in the Frisco theme, so contact its author for support.
May 19, 2012 at 6:51 am #134778In reply to: SPAM ON ACTIVITY PAGE!
Tina
Participant@neononcon it does make me wonder, now that you mention it….although i suppose its because they have more people keeping an eye open for spammers? i simply don’t have the time to keep up with all the spammers. sigh. i don’t have anywhere near this size of a problem with this on my other sites, all wordpress…but then, they are not set up to be a community like this one buddypress site is. its never really taken off anyway so i’m seriously thinking its time to ditch buddypress…but then, i’ve put a lot of work into the theme and setting it all up so its very frustrating!!
May 19, 2012 at 2:49 am #134772In reply to: Struggling to create groups using my own theme
@mercime
ParticipantTry to isolate what’s conflicting with group creation. Deactivate all plugins except BuddyPress and change to bp-default theme, then create a group. If that works, move forward by activating your custom theme, create a group, and so forth.
May 19, 2012 at 2:42 am #134771In reply to: How do i find html code
@mercime
ParticipantMay 18, 2012 at 11:57 pm #134767In reply to: [Resolved] Mystique Theme From DigitalNature
@mercime
Participant@hedak – copy header.php and sidebar.php of mystique theme and Save As > … respective directions posted above.
May 18, 2012 at 7:38 pm #134756valuser
Participant@mercime many thanks for info
will take a look.
There was a plugin called Google Maps Made Simple or wpgmappity from http://www.wordpresspluginfu.com/wpgmappity/
that allowed front-end posting (and configuration) of google maps.It still works. There is an example of what it can do in the p2 theme (front-end posting) at http://www.rubyrvews.com/.
I’ll leave a test user account open for a week ( user: tester password: tester1 ) in case any potential developer might have a look, see it working, maybe insert a map and, perhaps explore if it can be ported to buddypress.
All i know is – it works on p2 front end and is reasonably intuitive to use.
though the login asks for email it accepts tester !
May 18, 2012 at 6:57 pm #134755In reply to: How can I make the logo display? [RESOLVED]
Wendy Cockcroft
MemberSorry, Hugo, I need to know *exactly* what this is supposed to look like. Putting this in
`<?php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;
?>function bp_dtheme_setup() {
global $bp;// Load the AJAX functions for the theme
require( TEMPLATEPATH . ‘/_inc/ajax.php’ );// This theme styles the visual editor with editor-style.css to match the theme style.
add_editor_style();// This theme uses post thumbnails
add_theme_support( ‘post-thumbnails’ );// Add default posts and comments RSS feed links to head
add_theme_support( ‘automatic-feed-links’ );// Add responsive layout support to bp-default without forcing child
// themes to inherit it if they don’t want to
add_theme_support( ‘bp-default-responsive’ );// This theme uses wp_nav_menu() in one location.
register_nav_menus( array(
‘primary’ => __( ‘Primary Navigation’, ‘buddypress’ ),
) );// This theme allows users to set a custom background
add_custom_background( ‘bp_dtheme_custom_background_style’ );// Add custom header support if allowed
if ( !defined( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’ ) ) {
define( ‘HEADER_TEXTCOLOR’, ‘FFFFFF’ );// The height and width of your custom header. You can hook into the theme’s own filters to change these values.
// Add a filter to bp_dtheme_header_image_width and bp_dtheme_header_image_height to change these values.
define( ‘HEADER_IMAGE_WIDTH’, apply_filters( ‘bp_dtheme_header_image_width’, 401 ) );
define( ‘HEADER_IMAGE_HEIGHT’, apply_filters( ‘bp_dtheme_header_image_height’, 80 ) );// We’ll be using post thumbnails for custom header images on posts and pages. We want them to be 1250 pixels wide by 133 pixels tall.
// Larger images will be auto-cropped to fit, smaller ones will be ignored.
set_post_thumbnail_size( HEADER_IMAGE_WIDTH, HEADER_IMAGE_HEIGHT, true );// Add a way for the custom header to be styled in the admin panel that controls custom headers.
add_custom_image_header( ‘bp_dtheme_header_style’, ‘bp_dtheme_admin_header_style’ );
}`makes it worse, not better, because the code shows up above the header.
Here’s the CSS:
http://snazzymob.com/wp-content/themes/Snazzy/style.css
I don’t care how stupid I look to you as long as the end result is that I’m given the correct information. That means providing me with the actual code in the actual way it’s supposed to be entered in the functions.php file.
This is what is there now:
`<?php
if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
function bp_dtheme_enqueue_styles() {}
endif;
?>`There’s got to be a way to stop the header image repeating.
May 18, 2012 at 5:53 pm #134752In reply to: [Resolved] Mystique Theme From DigitalNature
May 18, 2012 at 5:50 pm #134751In reply to: [Resolved] Mystique Theme From DigitalNature
hedak
MemberThanks for replies!
I’ll try it!May 18, 2012 at 5:47 pm #134750In reply to: [Resolved] Mystique Theme From DigitalNature
@mercime
ParticipantB. COPY your theme’s sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php
Add the following code at the TOP, above original sidebar code:
``Add the following code at the BOTTOM, below all other code:
``Save file.
C. Upload header-buddypress.php and sidebar-buddypress.php to your theme folder in server wp-content/themes/mystique/ in the same directory where your regular header.php and sidebar.php files are
D. Final note: Copy the style modifications for some BP elements https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste those at the bottom of your theme’s stylesheet, then adjust to taste.
May 18, 2012 at 5:47 pm #134749In reply to: [Resolved] Mystique Theme From DigitalNature
@mercime
Participant@hedak You will only need to create two new files, header-buddypress.php and sidebar-buddypress.php
If you’ve revised any of the BP template files transferred to your mystique theme folder in server during the BP Compatibility process, please delete the 6 BP folders transferred to your mystique theme folder in server – /activity, /blogs, /forums, /members, /groups, /register – then re-run Appearance > BP Compatibility again to make sure that you have clean template files.
A. COPY your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the BOTTOM of the file, below other code contained within, add this:
<div id="mask-3" class="clear-block"> <div id="mask-2"> <div id="mask-1"> <div id="primary-content"> <div id="post-" > <div class="clear-block">Save file.
May 18, 2012 at 5:37 pm #134748whyme26
MemberI have the same problem. All the main pages (groups, activity, forums, etc..) work fine, It’s just the “Buddybar” links under “My Account” like Profile, and such. This is a fresh install of WordPress and Buddypress with no plugins and using the default buddypress theme.
As far as I know rewite_modules are turned on – if they weren’t wouldn’t pretty permalinks not work at all? Although I’m still thinking it’s something with my host as buddypress works fine running on localhost with xampp..
Any idea what could be going on?
Could this maybe be buggering it up….? this WP/BP install is on my domain’s root, but I do have some subdomains running other wordpress installs (no buddypress).
Thanks for any advice.
May 18, 2012 at 4:25 pm #134745In reply to: Help me!!!! My posts are not updating in database
@mercime
Participant== Whenever any member are putting some posts on my blog, its not updating in my posts database. ==
BuddyPress doesn’t cause that kind of behavior. It might be caused by old WP/BP plugin.
To check: Go to basic WP installation, i.e., Deactivate all plugins then change to Twenty Eleven theme and check if issue is resolved. If so, activate BuddyPress only and Frisco theme and start posting. Do not activate plugins which are not explicitly updated to current WP/BP versions.May 18, 2012 at 3:22 pm #134734In reply to: site registration
@mercime
ParticipantMay 18, 2012 at 3:07 pm #134733@mercime
ParticipantYou’re welcome. Marking this as resolved.
May 18, 2012 at 12:29 pm #134728May 18, 2012 at 11:58 am #134726In reply to: How can I make the logo display? [RESOLVED]
Hugo Ashmore
ParticipantBest not to re-define the actual BP settings as those will get overwritten with upgrades – as I mentioned earlier define the constants in your child theme functions.php or use the add_filter approach although simply setting the constants should be sufficient.
If you image is repeating it suggest that your attempt to add no-repeat has not been correctly added but I can only guess as I can’t see your code, also it perhaps suggests that the header width is still too wide for your image width, although you have set the default size and ?uploaded a graphic of that exact size if your #header is still wider than graphic it will repeat.
You may need to overload the function from BP’s functions file that sets the embedded styles for the background image so you can directly adjust the background property.
copy the function `bp_dtheme_header_style()` and paste that in your functions file that now overrides the BP one and you can add to the #header ruleset.
May 18, 2012 at 7:46 am #134718In reply to: Misaligning BuddyPress Site
@mercime
Participant== My theme is the arras theme. ==
@allthingsbetting You could copy over some of the style mods to twenty ten theme to the bottom of your theme’s stylesheet then adjust to taste – esp `div.item-list-tabs` and `div#subnav.item-list-tabs` where you have to bring in the negative margins which expand the width of those navigation items.
Add also the following to your style.css
`div.padder {
background: #fff none;
border: 1px solid #ccc;
margin: 0 10px 15px 0;
padding: 0 15px;
}`Plus some unsolicited advice – you have URL’s with members-3/ and groups-2/ which is not cool. Back up DB.
Delete the current Pages “Members” and “Groups”. Go to trash and delete all “Members” and “Groups” Pages > Permanently. Go create new Members and Groups pages. You’ll see clean members/ and groups/ url’sMay 18, 2012 at 5:19 am #134714In reply to: [Resolved] css not showing image with child theme
@mercime
ParticipantYou’re welcome. Marking this as resolved.
May 18, 2012 at 5:18 am #134713@mercime
ParticipantMay 18, 2012 at 12:55 am #134705alexuor1
MemberHello friends
I am a newbee in wordpress and buddypress.
I have a problem which I don’t know how to solve.
I am using a theme Theme “Frisco for BuddyPress”.
Whenever any member are putting some posts on my blog, its not updating in my posts database.
Can anyone help? -
AuthorSearch Results
The problem’s solved now.