Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'theme'

Viewing 25 results - 14,726 through 14,750 (of 31,073 total)
  • Author
    Search Results
  • #134964
    Paul Wong-Gibbs
    Keymaster

    Mercime is very generously giving you pointers to make changes to your theme. If you’re still having problems, you may need to hire a theme developer to help you out.

    CMatthews
    Participant

    Thank you, that got the sidebar up. Now I don’t know why it’s aligned to the left, and up just a little too high,

    #134956
    Hugo Ashmore
    Participant

    I did cover the image header question in the other thread – no I didn’t copy the code in to the thread as – in all honesty – stating “copy this ‘named’ function” ought to be sufficient to get started with.

    I’ll now copy the function I referenced originally – you need to copy this into your child theme functions file, this function will alert BP not to run it’s original version and allows you to manipulate the rulesets that are created for custom headers.

    `
    function bp_dtheme_header_style() {
    global $post;

    $header_image = ”;

    if ( is_singular() && current_theme_supports( ‘post-thumbnails’ ) && has_post_thumbnail( $post->ID ) ) {
    $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘post-thumbnail’ );

    // $src, $width, $height
    if ( !empty( $image ) && $image[1] >= HEADER_IMAGE_WIDTH )
    $header_image = $image[0];

    } else {
    $header_image = get_header_image();
    }
    ?>

    #header { background-image: url(); }

    #header h1, #header #desc { display: none; }

    #header h1 a, #desc { color:#; }

    <?php
    }
    `

    Now in the other thread I explained how to adjust the image dimensions by setting the define(‘HEADER_IMAGE_WIDTH’, 400) that will be displayed on the dashboard settings page and that represent the sizes the image will size and crop to, so you should still have that aspect in place.

    If you leave the BP default layout unchanged then the header element width is likely wider than your background image ( the header width is stated in the stylesheet, the background image is set from the embedded styles in the code above) and that background image will repeat – but we went over that on the other thread, with the code above you can now add the required properties to prevent that.

    Now code does need to be copied carefully and any stray code that may be causing issues might still affect things. Headers already sent errors have a number of reasons and are not necessarily easy for us to diagnose, I explained one possible cause but only you can determine if that is a reason.

    On this issue of instruction; as I have said and now mercime this is a volunteer support forum, we are not obliged to provide absolute instruction we attempt to help and guide, also when one is a web dev professional there will be a level of expertise expected in general terms regarding coding experience. You are attempting to customise buddypress past what it offers in the default so you must expect certain aspects of doing that to be less than utterly idiot proof and there are aspects of BP that many of us struggle with.

    #134954

    In reply to: Need help with theme

    @mercime
    Participant

    @mac02 check if we have “template-packed” your WP theme from list near bottom of https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    #134950

    In reply to: Need help with theme

    mac02
    Member

    Thanks and yea I went through the whole process. It just wasn’t aligning correctly. Decided to just scrap it for this project.

    #134944

    In reply to: User Help file?

    mrjarbenne
    Participant

    Case in point, here is the very specific video I created for our BP install: http://www.youtube.com/watch?gl=CO&hl=es-419&v=9vJ6AtP7DSI. I made this using Camtasia from techsmith.com, it’s a pretty simple process, but once you create it, you can’t make too many changes to theme or navigation (again supporting Paul’s point).

    #134942

    In reply to: Need help with theme

    mrjarbenne
    Participant

    Under Buddypress / Pages, have you created all of the requisite pages for Activity, Groups, Members, etc.? I don’t understand “Everything was spread all throughout the page”. You’ll need that template pack enabled, and it needs to move some components into your active theme. Did you run through the 4 step process?

    It’s a beautiful theme you’ve got going there, but I have honestly never had much luck converting a non-bp theme to be truly bp compatible without a lot of massaging. It’s not a plug and play process, hence the default theme. You may want to consider creating a child theme of the default: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/

    #134939

    In reply to: Need help with theme

    mac02
    Member

    I did do that. I just deactivated the plugin. Everything was spread all throughout the page. I tried to re-activate it but now it wont even show anything

    #134938
    mrjarbenne
    Participant

    Does it happen with the Default theme enabled? It could be a theme issue.

    #134934

    In reply to: Need help with theme

    mrjarbenne
    Participant

    Did you install the Buddypress Template Pack Plugin? If you are using a theme that doesn’t have buddypress functionality baked in by default, you need to install this plugin and run through the steps to enable compatibility. https://wordpress.org/extend/plugins/bp-template-pack/

    @mercime
    Participant

    == When searching these files, i cant find the exact code you wrote. for instance in activity, i found … ==

    I don’t know what file you’re opening. For activity/index.php –> lines 12-17 in https://buddypress.trac.wordpress.org/browser/tags/1.5.5/bp-themes/bp-default/activity/index.php

    #134931

    Mercime, I’ve got the willingness to learn new skills but I need to receive clear instructions. To date, I’ve had instructions that have not worked when I put them into practice. It doesn’t help when I’m receiving them in terms that I don’t understand. If you want to lock out noobs, please say so and I’ll go elsewhere.

    I’m not asking for much. Again, all I want is to be able to insert a logo of my choice at the dimensions I specify without it repeating. I’d also like to make my child theme work as expected without either locking me out or preventing new registrations.

    To date, the instructions I’ve received here on the forum have not facilitated that. When I thought the problem was resolved I marked the thread resolved. A day or so later, I got header errors and couldn’t get into the site until you (correctly) told me that my child theme was the problem and I’d have to rename it. Which I’ve done. And I’m grateful to be able to get back in. Thank you.

    Now I need to know if it’s possible at all to make a BuddyPress child theme that works properly with a header image of my choice or am I stuck with the massive dimensions specified by the default theme?

    If so, please tell me, in terms I understand, how to do it.

    #134930
    @mercime
    Participant

    B. At the bottom of the same 16 files, replace:
    `

    `

    with the following (except for registration/register.php):
    `

    `

    with the following for registration/register.php:
    `

    jQuery(document).ready( function() {
    if ( jQuery(‘div#blog-details’).length && !jQuery(‘div#blog-details’).hasClass(‘show’) )
    jQuery(‘div#blog-details’).toggle();
    jQuery( ‘input#signup_with_blog’ ).click( function() {
    jQuery(‘div#blog-details’).fadeOut().toggle();
    });
    });

    `

    Save files.

    C. Upload the 6 BP folders containing the 16 files you’ve just revised to your server wp-content/themes/wp-clear/

    D. Copy the style modifications made in BP Twenty Ten at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/ and paste to your theme’s stylesheet. Adjust to taste.

    #134929
    @mercime
    Participant

    @turfnet Based on the HTML structure of your theme, you need to use the first option, i.e., change 16 template files within the 6 BP folders transferred to your wp-clear theme folder in server during the compatibility process.

    If you’ve previously changed any of the BP template files in your theme folder in server, replace all of them for a clean slate by deleting the 6 BP folders – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.

    Download the 6 clean BP folders to your computer hard drive.

    A. At the top of each of those 16 template files I linked to above, replace
    `

    `

    with code I posted at
    http://pastebin.com/tpEyMDJq

    Then, in each of 16 files, you’d like to change the BP Templates’ page title’s header tag from `

    ` or `

    ..

    ` to `

    // Titles Of Respective BP Page Templates //

    `, just watch out when you do this in the /activity/index.php page.

    Save files.

    #134918
    w84me
    Member

    The BP Template Pack plugin hasn’t been tested w/WP 3.3.2, so I guess I’ll try the BP default theme instead and report the results ASAP.

    #134916
    Paul Wong-Gibbs
    Keymaster

    If you switch to the BP Default theme, do you still get the problem? You can switch back to your regular theme after testing, it just helps narrow down the possibilities.

    #134914
    w84me
    Member

    @mercime thanks for the response. To answer your questions:

    WP version = 3.3.2
    BP version = 1.5.5

    Hosted w/Hostgator

    I went through the Installation Wizard, step-by-step and confirmed everything. I performed and confirmed each step several times.

    Site URL: boostego

    WP Theme = Themefuse: Sportedge

    I did not install and activate the BP Template Pack plugin to make the theme compative with BuddyPress. I’m not sure of what the steps would be to “fix the HTML structure of the BP template files”. Could you please elaborate? TIA..

    Doug
    Participant

    after work tonight im just going to try and follow this guide….

    https://codex.buddypress.org/theme-development/bp-template-pack-walkthrough-level-easy-2/

    is that what i need to do to fix it?

    Thanks again

    Doug
    Participant

    When searching these files, i cant find the exact code you wrote. for instance in activity, i found

    `

    <div id="post-” >

    `

    instead of

    `

    `

    so I think i’m still lost here….?

    #134886
    Hugo Ashmore
    Participant

    Wendy BuddyPress customization isn’t for beginners you do need a degree of dev experience definitely a basic understanding of PHP / CSS/ and markup.

    In reference to the header I thought that was sorted out in the other thread? In which case it oughtn’t to be raised again as it’s a bit misleading, if however it is still an issue post back on the other thread.

    I noted that your child custom themes functions file had the BP enqueue function along with it’s wrapper function:

    `<?php
    if ( !function_exists( ‘bp_dtheme_enqueue_styles’ ) ) :
    function bp_dtheme_enqueue_styles() {}
    endif;
    ?>
    `

    That doesn’t look right, I would remove that unless the child theme actually handles loading styles somewhere else as this will prevent BP loading any styles – which may be the intention, mercime may be able to confirm that this is correct.

    As for the headers sent error this may be due to having white space in the file after php tags are closed, that is after the final ‘?>’ you might have an actual carriage return which acts as actual parsed data if that’s so it needs to be backspaced out.

    #134881

    Thanks, Mercime. After that, what can I do to fix whatever is causing the problems? So far I’ve found BuddyPress to be a profoundly frustrating experience because the instructions for customizing the theme are too vague to follow correctly.

    All I want to do is add a header banner that doesn’t repeat and make sure the registration page works as intended. How can I do that? When I followed the instructions given me, I ended up with a mess.

    I’ve had to revert to the default for now. Is it really that hard to a) add a new header image at 401 x 80px and set it to *not* repeat?

    #134871
    mhensler
    Member

    Sorry, I was doing work on my site and took the BP theme down. It’s back up. Tried removing Buddypress and reinstalling it, but it still recognizes all of the old settings. Here’s my forum page: http://www.mrhensler.com/forums/ Clicking on any of the forums yields nothing.

    Jchamp311
    Participant

    Where can I get the script for the registration page? Do you think there is a fault with the buddy press theme as it wont let me create a new search or registration page?

    Jchamp311
    Participant

    I wasnt trying to delete anything apart from pages within wordpress I wasnt using. I had originally installed a shopping plugin but the pages still stayed on and I thought I was deleting the registration page for that but it was for the buddy press theme.

    I never went into my FTP and deleted any files only deleted the page from wordpress back office.

    Now I get a message saying that The following active BuddyPress Components do not have associated WordPress Pages: Search Page, Register. Repair

    When I got to the buddy press page to repair it I cant?

    orpatech
    Member

    And you are not sure about the correct location of that file ???
    “Once Again” What were you trying to delete ??? Your theme or what ?

Viewing 25 results - 14,726 through 14,750 (of 31,073 total)
Skip to toolbar