So if you’re on BP 1.5 and installed BP Template Pack 1.2, then you only need to update 11 files now. So if you require assistance on that end, open up your WP theme’s page.php and paste in pastebin.com, submit, and paste the generated URL here.
As for the second method, after creating those three new files, you need to make revisions in those files then upload to your active WP theme folder in server.
As for the bbPress template files, they look good in many themes but might need adjustment for some. I say one step at a time. Let’s get your theme BP-compatible.
Cool. I got Bp 1.5 and BP template pack 1.2 already installed, the installation is correct and 11 files need to be update. I’ve added
the Pastebin url here for the avenue page.php code. here : http://pastebin.com/vRu5jLDb
also here’s the avenu index.php code here : http://pastebin.com/y15va2g3
also I’m up to the setup option to install “Forums for Groups” and “New! Site Wide Forums” which I havent installed yet.
Here’s something to give back to the community to test out WP theme’s, plugins, customisations without an internet connection http://www.instantwp.com/
Download the six BP template folders which transferred into your active WP theme folder during the BP compatibility process down to your computer hard drive. Open up the first file, activity/index.php , with text editor of choice
1) At the top, replace:
`
`
with:
`
`
2) At the bottom of same file, replace
`
`
with:
`
`
3) Before closing the file, you might also want to change the header tag of the activity/index.php
`
`
to
`
`
so all your headers across site are the same.
Save file. Repeat 1-3 on the remaining 10 files. Save and upload to your active WP theme folder in server.
Oops, forgot about that one. For the bottom part of registration/registration.php, 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();
});
});
`
Ok Cheers!! I also had to add Step 1 and 2 to correct the alignment for those pages Delete account, Ok Cheers!! I also had to add Step 1 and 2 to correct the alignment for those pages Delete account, Notifications and general.
/members/single/settings/delete-account.php
/members/single/settings/notifications.php
/members/single/settings/general.php
and
/registration/activate.php
plus
/blogs/create.php
/forums/single/forum.php
/forums/single/topic.php
Hey any ideas how to fix the above alignment ?
Looks like you’ve fixed alignment on the Community page per link above. Can’t find the url to your forums
No, I still havent fixed the Forum Discussion section Alignement issue – To see what Im saying I’ve turned back on the Forum Discussion component for you to check out . http://www.our-festivals-australia.com/community/
Looks like the forums alignment i.e. sidebar is level with content just like you have with your groups and members. Needs a bit of CSS luv to add spacing between sidebar and content.
Ok.. Would that be in the theme’s Stylesheet (style.css)
Yup. Adjust negative left and right margins on BP component elements so you’d get back the spacing between sidebar and content. I needed to add !important to all of below because bp.css is enqueued
`div.dir-search { margin: -20px 0 0 !important; }
div.item-list-tabs { margin: 25px 0 20px !important; }
div#subnav.item-list-tabs { margin: -15px 0 15px !important; }
table.forum { margin: 0 !important; }`
I added the code to the the Themes “Style.Css” at the end of the section Main Styles and before the start of Side Bar styles. It seems to place it better in alignment.. Thanks for Help Cheers!!
http://www.our-festivals-australia.com/community/
/*** Main Styles ***/
Etc, Etc, Etc
div.dir-search { margin: -20px 0 0 !important; }
div.item-list-tabs { margin: 25px 0 20px !important; }
div#subnav.item-list-tabs { margin: -15px 0 15px !important; }
table.forum { margin: 0 !important; }
/*** Sidebar styles ***/
Oh one more thing how do i get the padding expanded for the listed topics as it looks alittle cramped. on the community discussion forum topics : http://www.our-festivals-australia.com/community/
Add this to style.css
`table.forum tr > td:first-child, table.forum tr > th:first-child {
padding: 15px !important;
}`
You should also install the Firebug add-on for Firefox to help you along with styling your site.
Yep that sorted it out sticking that extra code into the style.css .. Cheers Bud for all your Help !!
table.forum { margin: 0px !important; }
table.forum tr > td:first-child, table.forum tr > th:first-child {
padding: 15px !important; }
div.dir-search { margin: -20px 0 0 !important; }
div.item-list-tabs { margin: 25px 0 20px !important; }
div#subnav.item-list-tabs { margin: -15px 0 15px !important; }
You’re welcome.
Remember, Firebug add-on for Firefox
You’re welcome.
Remember, Firebug add-on for Firefox