Search Results for 'theme'
-
AuthorSearch Results
-
February 14, 2012 at 7:06 am #129770
In reply to: Page title issue since BP 1.5
Paul Wong-Gibbs
KeymasterCheck your theme’s header.php, near the ‘title’ tags. You haven’t got your site name hardcoded in, have you?
February 14, 2012 at 7:04 am #129769In reply to: Registration Form
Paul Wong-Gibbs
KeymasterThe easiest way is to create a new profile field group, and move the fields you don’t want to appear on the registration form into it.
The more involved way is to edit the /registration/register.php file in your theme, and tweak the section that begins “Use the profile field loop to render input fields”. This is also the place where you’ll want to move the markup to arrange the form to your liking; you will probably also need to add some CSS to your theme.
February 14, 2012 at 5:59 am #129767@mercime
ParticipantB. At the bottom of each file, replace
`
`
with the following (except for registration/register.php file);
`
<?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();
?>`Save all files. Upload 6 folders with revised files to your server.
February 14, 2012 at 5:52 am #129766@mercime
ParticipantBased on the structure of Thematic, you would have to change 16 template files within the 6 BP folders transferred to your Thematic child theme during the BP Compatibility process.
Download the 6 folders mentioned above – activity, blogs, forums, groups, members, registration – to your computer hard drive.
A. Open up each of the 16 BP files and at the Top of each file 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();
?>
<div id="post-<?php the_ID();
echo ‘” ‘;
if (!(THEMATIC_COMPATIBLE_POST_CLASS)) {
post_class();
echo ‘>’;
} else {
echo ‘class=”‘;
thematic_post_class();
echo ‘”>’;
}
// creating the post header
thematic_postheader();
?>`February 14, 2012 at 4:16 am #129763In reply to: [resolved] Register Page Loads Blank
@mercime
Participant@tadpubco are you using a WP theme and if so, did you install BP Template Pack and go through Appearance > BP Compatibility?
February 14, 2012 at 2:06 am #129758@mercime
ParticipantYou’re welcome.
Marking this as resolved then. Cheers
February 14, 2012 at 2:03 am #129757In reply to: theme installation failure
@mercime
ParticipantIt means you need to activate the BuddyPress plugin.
February 14, 2012 at 12:47 am #129754erica34
MemberGot it fixed now. Thank you so so so much!!!!!!
February 14, 2012 at 12:40 am #129753@mercime
ParticipantSure, you can BP in a secondary blog of your WPMU installation. Create a bp-custom.php file and in it add the following so you can set which blog ID BuddyPress will run on:
`<?php
define ( ‘BP_ROOT_BLOG’, $blog_id );
?>`
Replace $blog_id with the actual side ID# e.g. 35 then save file and upload to wp-content/plugins/ folder– from https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/
Sure, you can activate a BP-compatible theme for that specific BP in secondary site.
February 14, 2012 at 12:32 am #129752In reply to: [Resolved] Ray of Light WordPress Theme issues
@mercime
ParticipantYou’re welcome. Thank you for coming back and sharing the good news
February 13, 2012 at 7:48 pm #129731In reply to: [Resolved] Ray of Light WordPress Theme issues
I would like to thank you mercime, with the help of you and the theme developer, BuddyPress does work on my theme now. Thank you.
February 13, 2012 at 5:06 pm #129723In reply to: Comments on activity not working
Edouard Morrissette
ParticipantI too have the same issue. I have Buddypress 1.5.3, WP 3.3.1 and BP Social 1.2.4. When we reply in the activity stream it gives me error 404.
Anyone tried to update BP to 2.5.4 to see if it resolves the issue? Is it theme related? How can I fix this? It’s crippling my user’s willingness to use the site: we rely on replies and comments to build common knowledge on projects !!!
February 13, 2012 at 10:09 am #129709In reply to: New Message Ajax Notifiction
airair
MemberThanks and it worked.
but its only show unread count on page load, but if user receive any message this did’t update.
the main purpose of this script is to display total number of unread messages and it should update via ajax means if user receive any message, it should show total total number of unread messages without reloading page.i have bellow code in function.php of my theme
`<?php
function addMessageRefresh()
{
?>function getMessages(){
jQuery(‘#user-messages span’).text(“Unread Messages: ()”);
}
setInterval(“getMessages()”, 10000);<?php
}
add_action( ‘wp_head’, ‘addMessageRefresh’);
?>`Thanks
February 13, 2012 at 3:31 am #129693In reply to: New install, nothing works!
glepage
MemberUnfortunately, still did not work.
As for Twenty Ten. I built my site from a blank theme.. Is there a way to find out the basic requirements for BP?
February 13, 2012 at 3:21 am #129692In reply to: New install, nothing works!
@mercime
Participant@glepage could you clarify further re what you mean by BP Template pack doesn’t work? Maybe I should have more explicit, you need to activate BuddyPress plugin first.
As for Twenty Ten, we have a codex article on how to make it compatible with BuddyPress at https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/
February 13, 2012 at 3:15 am #129691In reply to: activity stream filter like buddypress.org?
@mercime
ParticipantYou can check out the code that deals with the dropdown list from line 93 thru line 130 of the activity index file of the bp-default theme https://buddypress.trac.wordpress.org/browser/tags/1.5.4/bp-themes/bp-default/activity/index.php#L130
February 13, 2012 at 3:05 am #129690In reply to: New install, nothing works!
glepage
MemberThanks @mercime
Unfortunately that plugin doesn’t seem to work as well. I’ve even tried installing ‘BP Template Pack’ onto the default WP twenty eleven theme and it won’t work either. Thought it might be a compatibility issue so I uninstalled all plugins. Still didn’t work. All other plugins have been installing well as well.
February 13, 2012 at 2:51 am #129689In reply to: New install, nothing works!
@mercime
Participant@glepage you can integrate BP into your theme. Install and activate the BP Template Pack plugin and go through Appearance > BP Compatibility process https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/ At the bottom of that page you’ll find an example of using the 1st method and two examples of the second method to make your theme compatible with BuddyPress.
February 13, 2012 at 2:31 am #129688stwc
ParticipantHmm. I just tried that, and no joy, so I’m not so sure now where to put the js. In my theme’s custom js, for now, I guess.
February 13, 2012 at 2:29 am #129687stwc
ParticipantSemi-resolved: I still don’t know why it was happening, but I’ve duplicated and modified the stream event delegation functions (for favoriting) (global.js line 166 or so) and targetted them to the posts container div on the front page instead, and the ajax is firing now.
Followup question: if I have _inc/global.js in my theme, it’ll override the one in bp-default, like everything else would, yes? And thus be safe from BP upgrade overwriting?
February 13, 2012 at 1:39 am #129684In reply to: Can I integrate BP into my custom WP Theme?
aces
ParticipantIt shouldn’t be too hard to adapt your own theme using the buddypress template pack and the codex guide
https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-ten-bp-1-5/ and https://codex.buddypress.org/theme-development/theme-dev-bp-template-pack-walkthrough-twenty-eleven-bp-1-5/ might be useful, particularly if your theme is based on either…
An Alternative to that, and if you aren’t happy with any of the buddypress themes, is to build a child of bp-default. A good place to start is: https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/
February 13, 2012 at 12:51 am #129683In reply to: New install, nothing works!
glepage
MemberI’m having the same issue. I built a custom WP theme and I’m now wanting to integrate BP into my theme. Or should I take an existing free BP theme and start from scratch?
February 12, 2012 at 8:39 pm #129679In reply to: New install, nothing works!
@mercime
ParticipantThis is not a BuddyPress issue then, but a theme issue. If you change to bp-default theme, I gather that the issue will be corrected.
In all probabilty, your theme would need to be updated to be compatible with latest BP/WP versions. You should contact theme author for the free support which should come together with the purchase of a premium theme.
February 12, 2012 at 8:15 pm #129678In reply to: New install, nothing works!
stuartjwright
MemberThanks for the suggestion – but unfortunately I still have no buddypress pages found after installing and activating the templates pack plugin and going through the compatibility steps.
I’m using the Salutation theme from ThemeForest which is apparantly already compatible with BuddyPress as well as WordPress anyway. Very confused, as i’ve installed BuddyPress in the past and had no problems – even without installing additional templates. Confused!

Any other suggestions?
February 12, 2012 at 5:20 pm #129671Adel Tahri
Memberyes i do
header.php //for child theme
http://pastebin.com/iDn46q7j
sidebar.php
http://pastebin.com/ZNVkfPW0
footer.php
http://pastebin.com/fT1VPM8nnow
child theme / member/index.php
http://pastebin.com/a8AV5Q4r -
AuthorSearch Results