Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] Theme Compatibility Details – Memo Theme


  • thejackshannon
    Member

    @thejackshannon

    Just created a new site. First time user for BuddyPress and s2Member. They seem to really work well together. However, I have gone through the steps that BP suggests for compatibility customization for non-BP-supported themes. I’m just too incompetent to understand the php and css. Help!

    I have Memo Theme from ThemeForest as my theme. Site is theshannonigans.com. Sorry you gotta register as a member. Please mention that you saw my post on this forum in the comments box during registration.

    Problems:
    1. I cannot get the width of BP and s2Member to match the width of my theme.
    2. I can’t figure out how to add a spacing between the “Complete Sign Up” button and the footer on the registration page.
    3. I cannot figure out how to change the orangish-red colored font to a different color in the BP profile editing pages.
    4. I want my redirect page (1st page a new user sees when he/she visits the site) to either look like the Log In splash page or match my theme with the “notebook paper” behind it.

    Please help.

Viewing 5 replies - 1 through 5 (of 5 total)

  • @mercime
    Keymaster

    @mercime

    == I have Memo Theme from ThemeForest as my theme. … Sorry you gotta register as a member. ==
    You should make it easier for volunteers to assist you with your theme issues by providing a “throw-away” username/password to your site. You could later delete said account from your install or change password after everything’s resolved.

    Also, volunteers who help out here are not likely to purchase the Memo theme just to help you out. Open up your theme’s page.php file, Select All > Copy and go to pastebin.com and paste source then click submit. Post the generated pastebin URL here.


    thejackshannon
    Member

    @thejackshannon

    Thanks mercime. You ask and you shall receive.

    volunteer login
    username: friend
    password: friend1234

    pastebin
    http://pastebin.com/dTn7dEwK

    Again thanks for the help.


    @mercime
    Keymaster

    @mercime

    Looks like you have not completed Step 3 of the BP Compatibility process – https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles

    In your case, you have to use the first method – i.e. changing 16 BP template files – to fix alignments and spacing – per your questions #1 and #2 above.

    Download the 6 BP folders transferred to your Memo theme folder in server down to your computer hard drive. Starting from activity/index.php, open this file and make the following changes:

    At the very top of the file, replace:
    `

    `

    with [UPDATED replaced hentry-content with entry-content]
    `

    `

    at the very bottom of the activity/index.php file, replace
    `

    `

    with
    `

    `

    Save file and continue with replace the same with the remaining 15 files.

    For registration.php, replace the bottom area
    `

    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();
    });
    });

    `

    with [Updated this whole block]

    `

    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 and upload folders to theme folder


    thejackshannon
    Member

    @thejackshannon

    Thanks for the help. Made some headway. However, in the step 3 of the compatibility process it only listed 11 files to change. What are the other 5?

    There are still some outstanding formatting issues. There doesn’t seem to be a pattern to it either. Some of the edited files display wrong while some of them display right.

    As you login and go to your member profile it seems that only the setting tab looks correct. Notice where it puts your username in relation to your avatar. Sometime its to the right (this looks correct) and sometimes its underneath (this seems to be wrong with spacing issues).

    Again thanks for your help. Any thoughts?


    @mercime
    Keymaster

    @mercime

    == However, in the step 3 of the compatibility process it only listed 11 files to change. ==
    True, but the BP Template Pack plugin will be updated to list 16 files which need to be changed per link above https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles

    == There are still some outstanding formatting issues. ==
    True. I have updated code above in two areas above which I have placed [Updated …] info.
    1. hentry-content should be entry-content
    2. whole block of what to be replaced in bottom of registration/register.php

    I have to ask whether you changed style in bp.css of the BP Template Pack plugin because the `div#item-header-content` is missing the `margin-left: 170px; ` and you need to bring that back.

    In addition, you need to tweak some styles in your WP theme’s style.css file. Check out the additional tweaks on the BP components divs as a guide https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Resolved] Theme Compatibility Details – Memo Theme’ is closed to new replies.
Skip to toolbar