== 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.
Thanks mercime. You ask and you shall receive.
volunteer login
username: friend
password: friend1234
pastebin
http://pastebin.com/dTn7dEwK
Again thanks for the help.
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
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?
== 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/