Skip to:
Content
Pages
Categories
Search
Top
Bottom

[Resolved] Theme Compatibility – Woothemes Listings

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

  • @mercime
    Keymaster

    @mercime

    @suziwilson there’s an alternative way to make WP theme compatible with BP using BP Template Pack Plugin depending on the theme
    https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/
    https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-eleven-bp-1-5/

    If you need further assistance, open up your WP theme’s page.php, select all and copy, paste to pastebin.com, click submit and post the generated URL here. Posting what theme you’re using, site URL would facilitate assistance as well.


    Suzi Wilson
    Participant

    @suziwilson

    Hi mercime, Thank you for replying so quickly. Here is my page.php. The URL is:
    http://www.newlifeharmony.com


    Suzi Wilson
    Participant

    @suziwilson

    Sorry, I haven’t used pastebin before. I think this may be what you need:
    http://pastebin.com/SN36qZk1


    @mercime
    Keymaster

    @mercime

    @suziwilson congratulations on your pastebin post :-)
    To make sure that your code shows up in this forum, place backtick (`) the symbol within the parentheses at the beginning and at the end of your code. For long/big blocks of code, pastebin is better.

    ` `
    We’ll be using the first method to make your WP theme compatible with BuddyPress – changing HTML structure in 16 BP template files transferred to your Listings theme folder in server during the BP Compatibility Process. Download the 6 BP folders transferred to your Listings theme during the process.

    Starting with activity/index.php At the top of the file, replace

    `

    `

    with

    `

    `

    At the bottom of the file replace

    `

    `

    with

    `


    `

    Save file. Then do this with the remaining 15 files except for registration/register.php where at the very bottom, you 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();
    });
    });


    `

    Save. Upload to server.
    ` `

    You would still have some minor tweaks to the styles within the template. I’ve posted the tweaks used in some themes near middle of this page https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/


    Suzi Wilson
    Participant

    @suziwilson

    Thank you mercime. You’ve got me part of the way there. The buddypress pages are now just aligned a little to far to the left and the sidebar widgets are overlaying the pages. Can you give me a hint on how to move the content over about 20px to the left and what to do about the overlaying sidebar widgets?

    BTW. I don’t have any widgets in the buddypress sidebars, so they must be coming from the theme’s default widget area’s.

    Thanks for the help you’ve provided already. I appreciate it greatly.


    @mercime
    Keymaster

    @mercime

    Delete the header-buddypress.php and sidebar-buddypress.php previously created. My bad, I missed the common div#content in both Listings WP theme and BP template files which unfortunately are placed in different parts of the HTML structure. I have replaced instructions using second method with that of using the first method for BP Compatibility process in above post.

    The widgets in sidebar which show up in the BuddyPress pages are the same as what you placed in your theme’s sidebar.


    Suzi Wilson
    Participant

    @suziwilson

    Thanks mercime. I’ll give that a try and let you know how it works. Wish I could send a chocolate chip cookie your way.


    @mercime
    Keymaster

    @mercime

    You’re welcome. Crossing my fingers :-)


    Suzi Wilson
    Participant

    @suziwilson

    Thanks Mercime! Works like a charm. Perfect! Just what I wanted. Thank you


    Suzi Wilson
    Participant

    @suziwilson

    Used this solution once again, more than a year since the first one and it worked just as well! Thank you again.


    @mercime
    Keymaster

    @mercime

    @suziwilson Glad it worked out for you again and thanks for letting us know 🙂

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