Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] Adventure Journal theme

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

  • @mercime
    Keymaster

    @mercime

    You’d have to use the first method of fixing alignment in the BP Compatibility process to make your WP theme compatible with BuddyPress. The first method involves changing HTML structure in the 16 files as listed here https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/#tplfiles

    A. Download the six BP template folders which were transferred to your adventure-journal theme in server down to your computer hard drive.

    ** We’ll explore if the adventure-specific template tags will work within BP. It will spout errors if it’s not working, so we’ll have to delete such template tags. But if no errors show up, it’s good to go.

    B. Starting with activity/index.php, open it up and at the top of the file, replace:
    `

    `

    with
    `
    <div class="content" >
    <div id="col-main" role="main" style="”>
    <div id="main-content" >`

    C, At the very bottom of the same file, replace:
    `

    `

    with
    `


    `

    D. Save file and do the same to the remaining 15 files per list linked above except for registration/register.php where at the bottom of the file,
    replace:
    `

    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
    `

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

    `

    E, Upload the six folders to your server wp-content/themes/adventure-journal folder


    elephantspike
    Member

    @elephantspike

    Thank you, Mercime! Worked like a charm. Only thing now is: Which file do I edit to get the BP Album profile page to display my style?


    @mercime
    Keymaster

    @mercime

    You’re welcome.

    == Which file do I edit to get the BP Album profile page to display my style? ==
    Not sure. Please post at https://buddypress.org/community/groups/bp-album/forum/ You can refer them to this post if needed.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Resolved] Adventure Journal theme’ is closed to new replies.
Skip to toolbar