Search Results for 'buddypress'
-
AuthorSearch Results
-
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:43 pm #130725In reply to: Buddypress Profiles
trinityr
MemberI use a combination of xprofile and BuddyPress Profile Privacy. Granted this does not automatically create new ‘tabs’ it does allow you to separate Profile Fields into Groups and give the user control of who has access to what. I have a separate group for Social Networks. This allows the user to enter their social network information. Facebook Profile, Twitter, MSN, AIM, etc. This Social Network ‘group’ is displayed below the user’s other profile information.
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 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:43 pm #130712In reply to: Installing Buddypress kills my admin section!!!
@mercime
ParticipantInfo on that page show ways and means to increase memory limits. This is a server issue. Please contact your webhosting tech support for assistance to increase memory for your plan.
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/
March 1, 2012 at 4:58 pm #130708In reply to: Custom Sign-up Form
RobFenech
ParticipantAdding them isn’t a problem at all, (although I am sure you know this, sorry if I am being over-simple) you just go to the dashboard, go to buddypress -> profile fields and then add the ones you want in there. You’d need to create a hook into the sign-up process to then restrict the sign-up based on age though, which becomes more complex
March 1, 2012 at 2:56 pm #130701snowlas
ParticipantI was having this problem last week. I had Event Espresso’s Membership Integration plugin running, which was overriding the buddypress plugin. If you don’t have Event Espresso, it’s a plugin doing this.
Go in and deactivate individually each plugin and do a check. It’s tedious, I know. But I ended up rebuilding my entire website in a weekend and found out it was just a plugin.
Event Espresso has been working on BuddyPress integration and they used to have it, but that all changed when BuddyPress went to 1.5 and it broke their own code.
March 1, 2012 at 2:08 pm #130696heyshamsw
MemberI’ve not managed to fix this but I have discovered a work-around.
I’ve installed the Widgets on Pages plugin, add the necessary widgets to the widget area I’ve named “bpSidebar”, then in the child theme’s functions.php file added:This uses one of the theme’s hooks to place the widget area on the page.
As I say, this is a work-around rather than a fix.March 1, 2012 at 10:57 am #130693jamesmcbennett
Member@mercime If you mention me, I get an email…
I take your advice and choose a)
March 1, 2012 at 10:24 am #130692@mercime
Participant== Is there a way to subscribe getting an email post each time somebody responds? ==
@jamesmcbennett Not at this time.
== Below are codes as asked for. ==
Checked the code and you have two options
a) Create two files, header-buddypress.php and sidebar-buddypress.php, add some code and upload to your theme folder in server and you’re done.
– Con: your BP page titles will be within content area and not how it appears per product page.
– Pro: When BP is upgraded, no worries about upgrading the two files. Only need to check files when your WP theme is upgraded.b) Change 16 BP template files where changes to top and bottom areas are the same except for register.php. In this set up, you would have to change each template file’s page title containers yourself.
– Con: You would have to revise 16 template files each time BP/BP template pack plugin is upgraded
– Pro: You could have your page titles in BP pages looking like the rest of the site’s page titles.I would opt for a) but it’s up to you, a) or b) ?
March 1, 2012 at 10:17 am #130691In reply to: Installing Buddypress kills my admin section!!!
vishalsharma9090
MemberI have the same problem couldn’t get the solution you said. Can you please elaborate the solution….
Waiting…March 1, 2012 at 1:53 am #130684In reply to: Sudden BBconfig issues
Stacy (non coder)
ParticipantI was hacked last week and the current setup is from a restored back up that my host had. However some parts like the hackers user account was still there and a few things were strangely still readjusting all week. The forums were working after I cleared things up but going back to the BuddyPress ‘Forums Setup’ in wp-admin and reinstalling the forum config has worked. Thanks.
This resetting has happened to me before about a month ago with bp pages , they were suddenly unavailable and I had to reset them. Is there another cause for this perhaps to do with the new bp component setup? When I was hacked my host said that there was a compromise in a function in the code. BP upgrade was the only major change and now settings have turned off twice.
February 29, 2012 at 11:15 pm #130682In reply to: [Resolved] Removing Automatic Linking in Profiles
aces
ParticipantIt looks like one is for buddypress 1.5+ and the other for buddypress 1.2.9-
See: https://codex.buddypress.org/extending-buddypress/bp-custom-php/#examples
February 29, 2012 at 7:43 pm #130668In reply to: BuddyPress not sending verification email
studioleland
ParticipantThis might also help you here:
http://www.thoughtsofjs.com/fix-for-buddypress-e-mail-notifications-problem.html
February 29, 2012 at 7:21 pm #130666In reply to: Feedback and help on my BP site
richardpd
MemberHi yadigit
Many thanks for your reply.
I’m afraid I do not know the Avatar upload is controlled.
I have no special plugins.
The 2 plugins I use are BuddyPress template pack and bbpress plugin.
The avatar control is probably through those (except WordPress always has had avatar control so possibly it is inbuilt from my WP theme?).
I don’t know exactly as I am so new to BuddyPress!-sorry…I am more concerned still about my BP site functionality and have several questions on that eg
1.How do I create a forum topic?2. Why is settings>general returning a blank browser page?
In short how do I use BuddyPress and what can I do with it on my site given that I mainly want to use it as a forum?
I am grateful for more helpful replies, comments and feedback-thanks
February 29, 2012 at 6:24 pm #130661In reply to: [Resolved] Removing Automatic Linking in Profiles
Prince Abiola Ogundipe
Participant@henrybaum, put the following code inside your bp-custom.php.
function remove_xprofile_links() {
remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
}
add_action( ‘bp_init’, ‘remove_xprofile_links’ );Regards
February 29, 2012 at 4:18 pm #130658In reply to: Logged in username display for BuddyPress 1.5.4
frostdawn
MemberPaul- sorry, using BP Corporate 1.4 with BuddyPress 1.5.4. I misunderstood the question.
-
AuthorSearch Results