Search Results for 'theme'
-
AuthorSearch Results
-
March 3, 2012 at 2:29 am #130778
@mercime
ParticipantB. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php):
``
with the following for registration/register.php:
`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();
});
});`
C. Save files. Upload 6 BP folders to your server wp-content/themes/insignio/
D. You might also want to check out the style modifications made in BP Twenty Ten for reference. https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
March 3, 2012 at 2:29 am #130777@mercime
Participant@mosaicrob You will change 16 template files within the 6 BP folders transferred to your insignio theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive.
A. At the top of each of those 16 template files I linked to above, replace
``with
``March 3, 2012 at 1:56 am #130776@mercime
Participant@jamesmcbennett Sorry, missed the header-wrapper div. Open up your header-buddypress.php file and above
``
add
`get_queried_object_id();
$title = get_post_field( ‘post_title’, $post_id ); ?>`
Save file and re-upload to server.March 3, 2012 at 1:14 am #130773@mercime
ParticipantCould just be that the widget plugin is interfering with the function calls. Not sure about that. The scope of forums assistance covers getting HTML structure of theme onto the BP Template files. I used the info you have posted in pastebin. If there’s still some misalignment, let me know by posting url’s of BP pages in your site.
March 2, 2012 at 8:32 pm #130768In reply to: “Load More” not loading older topics
tjbrewers
ParticipantThis is probably a problem with my theme (BuddyBoss). Within the li class=”load-more”, it’s missing the span class=”ajax-loader”.
Where is this loaded? That should give me some clues as to where to find the problem.
Thanks!
March 2, 2012 at 7:34 pm #130764swisspenelope
Member@mercine, i have buddypress default theme and have de-activated all plugins except Suffusion BuddyPress Pack. i have the same problem as the guys above. (same wp and bp versions as above.) if i have understood correctly, in the email i received, the string
http://www.mywebsitename.org/activate/?key=9f664b72a0b703fe63a4f61fc2066175
contains the activation key at:
9f664b72a0b703fe63a4f61fc2066175
but when i paste this in the Activation Code box, i stay on the same page and nothing happens.
thanks, regards
SPMarch 2, 2012 at 5:45 pm #130759@mercime
Participant@neodoxa first thing, we have to remove the default image background and default left padding, etc. in your theme by adding following to your stylesheet:
`div#item-nav ul,
div#item-body ul {
padding-left: 0;
}
div#item-nav ul li,
div#item-body ul li {
background: transparent none;
}`You should install Firebug, a Firefox add-on, to help you identify and correct styles
March 2, 2012 at 12:20 pm #130746heyshamsw
MemberHi mercime,
A big thank you for your efforts, but I’m afraid these changes had no effect.
The `get_sidebar()` function calls are still not being called.
March 2, 2012 at 3:57 am #130742jamesmcbennett
Memberthanks,
but the header is still missing.The page is now fitting the rest which is great.
March 2, 2012 at 1:51 am #130737mosaicrob
MemberYes, I would absolutely like to continue. I will stand bye.
March 1, 2012 at 10:22 pm #130732markstone417@gmail.com
MemberIn short yes, this is my first buddypress setup so first thing I did was to test out registration
This was both in the custom-community theme and the default theme. No other plugins, except bbpress which I disabled to test, still no go.I am on a timeline so I have reverted to 1.5.0 and the activation step worked in one go. Unfortunately I am having problems as site-wide forums arent available in that version but that would be another topic. If none of the other posters sites are still available for testing, Id be glad to set up a vanilla wp, and buddypress install and provide you with the login and password…
Something in the code has definitely changed. I guess I could do a diff between 1.5.0 and 1.5.4… If someone finds the answer before I get the chance to do that, even better, let us know.
March 1, 2012 at 9:57 pm #130729In reply to: [Resolved] Footer widgets not displaying
@mercime
ParticipantFirst, what theme are you using? Did you test widget logic with bp-default theme?
March 1, 2012 at 9:53 pm #130728@mercime
ParticipantJust checked out the insignio theme and based on the HTML structure via View Source code, it shows that there already is a `
` which would conflict with BP Template Pack files’ ``, therefore I am now sure that you cannot use the 2nd method of just adding xxx-buddypress.php files (2nd method) to make your theme compatible with BuddyPress. I needed the full source of your theme’s header.php file which was rendered in source view to make sure there was no conflict.You will need to change 16 template files (1st method) for compatibility with BP.
Also, in the revision of 16 template files, the page title will be within the content and not standing out in one line like in the regular page, because doing otherwise is beyond the scope of this assistance. If you still want to proceed, let me know.
March 1, 2012 at 9:00 pm #130726neodoxa
ParticipantHate to bump this again… I just really need the help with fixing this. Any help from anyone? @mercime ?
March 1, 2012 at 8:34 pm #130724@mercime
ParticipantI see the site title and and the header search bar in page source code.
The problem was the absolute positioning of the site title and search bar in your stylesheet
replace:
`#header #search-bar {
left: 0;
position: absolute;
text-align: right;
top: 90px;
width: 100%;
}`with
`#header #search-bar {
width: 100%;
}`and work from there for the search
Then you have
`#header h1 {
position: absolute;
text-indent: -9999px;
top: 90px;
}`
and below that
`#header h1 {
bottom: 12px;
left: 15px;
position: absolute;
width: 44%;
}`which you can remove and start from
`#header h1 {
width: 44%;
}`then use Firefox with Firebug to test and copy styling if you wish.
March 1, 2012 at 7:53 pm #130721mosaicrob
MemberHi @mercime
I’m using this theme: http://themeforest.net/item/insignio-flip-portfolio-wordpress-theme/full_screen_preview/1033674
Here is my install:
http://irsu.co/thegreatestgiftI just checked the code and it is pasted correctly. I can email it to you if helpful.
Thanks for using your knowledge to empower.
March 1, 2012 at 7:43 pm #130720@mercime
Participant1) Which WP theme are you using? Need to see a demo to confirm HTML structure.
2) What you pasted for header.php is missing opening html, head, body tags etc. Please double check and repost code within header.php
3) Yes, it does look like you can use 2nd method for BP Compatibility, but can’t be sure till I see correct #2) and #1) above
March 1, 2012 at 7:34 pm #130719Prince Abiola Ogundipe
ParticipantThanks @mercime, the URL is http://suchworld.co.cc/
Exactly what i mean is the header site title and the header search bar.
Regards
March 1, 2012 at 7:32 pm #130718@mercime
ParticipantYou have not indicated whether you perform basic troubleshooting procedures like:
– First way to address this is to check whether the same behavior applies when you change to bp-default theme.
– To further isolate the issue, if changing to bp-default doesn’t work, is to deactivate all plugins except BuddyPress and see if issue is corrected.March 1, 2012 at 7:19 pm #130716@mercime
Participanthttp://goo.gl/zUiUO – this URL has been disabled.
There is no header image logo in bp-default theme. There is the site title link. Otherwise, what did you mean by “header logo”?
March 1, 2012 at 6:20 pm #130715@mercime
ParticipantB. Copy your theme’s sidebar.php and Save As > sidebar-buddypress.php
Open up sidebar-buddypress.php and at the top of the file, above all other code, add this:
``then at the bottom of the same file, below all other code, add this:
`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 file.
C. Upload header-buddypress.php and sidebar-buddypress.php to wp-content/themes/wpflexishop/
D. Style modifications for BP templates – you might want to use some or all of styles listed in this page https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
Sidenote: Looks like there’s a missing `` after “ in your sidebar.php per your pastebin.com post. Copy and paste typo?
March 1, 2012 at 6:19 pm #130714@mercime
ParticipantYes, @ mentions usually get emailed by default. Didn’t know if you disabled that in your settings like I did

a) is Good choiceIf you’ve changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
A. Copy your theme’s header.php and Save As > header-buddypress.php
Open up header-buddypress.php and at the bottom of the file, below all other code, add this:
[UPDATED – 3/2/12]
`get_queried_object_id();
$title = get_post_field( ‘post_title’, $post_id ); ?>`Save file.
March 1, 2012 at 5:33 pm #130711@mercime
ParticipantB. At the bottom of the same 16 files, replace:
`
`
with the following (except for registration/register.php):
`
<?php
thematic_belowpost();
// calling the widget area ‘page-bottom’
get_sidebar(‘page-bottom’);
?>
<?php
// action hook for placing content below #container
thematic_belowcontainer();
// calling the standard sidebar
thematic_sidebar();
// calling footer.php
get_footer();
?>`with the following for registration/register.php:
`<?php
thematic_belowpost();
// calling the widget area ‘page-bottom’
get_sidebar(‘page-bottom’);
?>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();
});
});<?php
// action hook for placing content below #container
thematic_belowcontainer();
// calling the standard sidebar
thematic_sidebar();
// calling footer.php
get_footer();
?>`C. Save files. Upload 6 BP folders to your server wp-content/themes/YourThematicChildThemeFolder/
D. You might also want to check out the style modifications made in BP Twenty Ten for reference. https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/3/
March 1, 2012 at 5:32 pm #130710@mercime
Participantheyshamsw You will need to change 16 template files within the 6 BP folders transferred to your thematic child theme folder in server during the compatibility process.
If you’ve previously changed any of the BP template files in your theme folder, replace all of them for a clean slate by deleting the 6 BP folders in server – /activity, /blogs, /forums, /groups, /members, and /registration – then re-run Appearance > BP Compatibility.
Download the 6 clean BP folders to your computer hard drive.
A. At the top of each of those 16 template files I linked to above, replace
``with
`<?php
// calling the header.php
get_header();
// action hook for placing content above #container
thematic_abovecontainer();
?><?php
// calling the widget area ‘page-top’
get_sidebar(‘page-top’);
the_post();
thematic_abovepost();
?>`March 1, 2012 at 5:20 pm #130709markstone417@gmail.com
MemberSo are you guys going to address this issue? I have the same problem on a clean install of wordpress and buddypress with no additional plugins active and have tried several themes. My site is http://www.websitesthatkickass,com/patrick/
-
AuthorSearch Results