Search Results for 'buddypress'
-
AuthorSearch Results
-
July 16, 2014 at 5:53 pm #185181
In reply to: Theme Problem on buddypress pages !
@mercime
Participant@sillery4ever the simplest solution would be to create a new file named
buddypress.php, add code, then upload it to the root of your theme’s folder in server.Re code you will place in
buddypress.php:
Normally it is only a matter of copying over a theme’s page.php file and pasting it in buddypress.php, then configuring HTML etc. to render all your BP pages with the same layout using BP theme compatibility. See how it was done with the WP Default themes https://codex.buddypress.org/themes/bp-theme-compatibility-and-the-wordpress-default-themes/If that doesn’t work for you, please contact premium theme author for assistance.
July 16, 2014 at 10:57 am #185174AIRFieldNotes
ParticipantSorry, WordPress 3.9.1, Buddypress 2.0.1, using BP default and Magazine Basic Themes. And yes, I’ve done troubleshooting and searched the support forums with no luck.
Thanks for the tips.July 16, 2014 at 9:49 am #185170In reply to: [Resolved] Change the layout of the member profile.
The Doctor
ParticipantAfter 3 intense days I finally figured it out. Edit the home.php located in bp-templates/bp-legacy/buddypress/members and some css.
July 16, 2014 at 9:12 am #185169@mercime
Participant@foresme
1) Activity Privacy: https://wordpress.org/plugins/buddypress-activity-privacy/2) Profile Privacy: copy over this file https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-templates/bp-legacy/buddypress/members/single/profile/profile-loop.php into your active theme folder following this structure wp-content/themes/yourthemename/buddypress/members/single/profile/profile-loop.php
– at the very top of that file, insert:
<?php if ( is_user_logged_in()) : ?>– at the very end of that file, insert:
<?php else : ?> <?php echo "<div style='width: 100%; padding: 20px; border: 1px solid #eee; text-align: center; font-style:bold; font-size: 1.3em;'>You have to log in to view this member's profile.</div>"; ?> <?php endif; ?>(updated version of danbp’s reply in this post)
July 16, 2014 at 6:16 am #185161In reply to: Updated Buddypress
@mercime
Participant@mayan2014 download older WP versions at https://wordpress.org/about/roadmap/
I hope you backed up your DB and files before upgrading WP/BP. To make sure that your BP and WP versions are synced, check out https://codex.buddypress.org/developer/releases/July 16, 2014 at 6:09 am #185159In reply to: Updated Buddypress
@mercime
Participant@mayan2014 What BP version did you upgrade from? Have you checked whether the theme and/or the plugins you have activated in your site are compatible with the latest BP version?
You can rename/delete the BuddyPress plugin folder via cpanel or s/FTP. You can download older versions of BP at https://wordpress.org/plugins/buddypress/developers/
July 16, 2014 at 4:21 am #185157In reply to: [Resolved] Error in Invitation
@mercime
Participant@leonyipa please delete the following lines from BuddyDefault’s
sidebar.phpfile<?php if ( bp_is_active( 'messages' ) ) : ?> <?php bp_message_get_notices(); /* Site wide notices to all users */ ?> <?php endif; ?>You can instead either add the Sitewide Notices widget in your sidebar or just allow the sitewide notice to appear in the header area like you have now. https://codex.buddypress.org/buddypress-components-and-features/buddypress-widgets/#buddypress-sitewide-notices
July 16, 2014 at 4:05 am #185155@mercime
Participant@airfieldnotes WP/BP versions? Have you done some basic troubleshooting? https://codex.buddypress.org/getting-started/troubleshooting/
July 15, 2014 at 10:25 pm #185139In reply to: [Resolved] Buddypress Breaks WordPress Search
Henry Wright
ModeratorI just read your blog post. It’s interesting you couldn’t get
define( 'BP_SEARCH_SLUG', 'searchresults' );to work outside of wp-config.php. Have you tried creating a bp-custom.php file and popping the constant definition in there?July 15, 2014 at 10:13 pm #185138In reply to: [Resolved] Buddypress Breaks WordPress Search
Jamie Madden
ParticipantHi Roquefort.
After I posted this I investigated the source code and came to the same conclusion as you. BuddyPress does take over WordPress search and causes any other WordPress search (including the inbuilt one) to stop working.
I did however find a work around! What happens is buddypress defines a search slug that is the same as WordPress. What you have to do is redefine the buddypress search slug to something else and your search will start working again.
Basically you want to put the following in your wp-config.php
`define( ‘BP_SEARCH_SLUG’, ‘bpsearch’ );
I tried to load this further up the stack to try and override this but wp-config seemed to be the only place this worked.
You can find out more about how I worked this out over at this post:
July 15, 2014 at 9:27 pm #185136In reply to: [Resolved] Buddypress Breaks WordPress Search
Roquefort
ParticipantI am experiencing the similar issues. BuddyPress by default “hijacks” the WordPress search, and searches seem to only be applied against my BP pages – which are few. I need my WordPress search back.
If there isn’t a way to include both (and given my Google searches, there doesn’t seem to be,) is there a way to disable BuddyPress search completely?
July 15, 2014 at 9:15 pm #185134In reply to: includePHP Member page
danbp
ParticipantIf your goal is to style the member diretory, which is set by default, you have to style it through CSS or modify the template from ithin a child theme. You can’t do this by adding a personnal template as for an usual WP page, to the BP (internal) page named Members.
July 15, 2014 at 6:31 pm #185125In reply to: Buddypress and a wordpress child theme?
danbp
ParticipantWe’re now in the 2.0 aera.
To apply changes to your BP 2.x site.
– Upload any theme you want and check first if it works with WordPress, specially by creating new users and sending messages.
– Upload and activate BuddyPress. Check conscientiously his settings. Changecalso the permalinks settings to your need (except by default).
– If everything is fine, after testing of course, you create then a child theme.
– if you need to alter some BP templates, you get copies of them from bp-templates/bp-legacy/buddypress/ and put them in your child-theme/community/ or child-theme/buddypress/ directory. All other files, which are not (BP files) filed in bp-legacy, should be copies of your original theme added to your child theme.References:
all comments in bp-templates/bp-legacy/buddypress-functions.php
https://codex.wordpress.org/Child_Themes
https://codex.wordpress.org/Function_Reference/get_template_partJuly 15, 2014 at 6:28 pm #185124colin101
ParticipantThanks for you reply, but that doesn’t seem to work. It doesn’t display anything.
I find this quite tricky, actually: I’ve tried a number of variations of the same flavor, but nothing seems to work. It’s easy enough to get the display name, but the user_login or nicename is… challenging. In comments meta, at least.
If I were smarter, I could probably put the info included at the link to good use, but I am what I am…
https://buddypress.org/support/topic/how-to-get-user-profile-data/July 15, 2014 at 5:15 pm #185121In reply to: Profile contact form
kypto
Participantyeah sure, currently its “contact form 7”
there i could manage the form right from the admin. there is field for the incoming messages, “message body”
could i use the function from buddypress here? like bp_get_member_profile_data(), or bp_member_name() ? i was just not positive that it will work, and didnt try it yet. now im just building up the structure of the web, so i just wanted to ask if it is possible.
if it is really that easy, than sorry for the silly question 🙂
July 15, 2014 at 5:02 pm #185119In reply to: User registration not working on fresh install.
chandana.p
ParticipantHi,
I am facing the same issue on buddypress 2.0.1 with WPLMS theme. I am new to wordpress, php so any help would be great..
Thanks,
Chandana.July 15, 2014 at 2:46 pm #185111In reply to: Active Friend Sidebar Widget
danbp
Participanthello @leonyipa,
you’ll find the solution by reading this codex page
July 15, 2014 at 1:13 am #185095jaciando1
Participanthi there @mercime thank you so much for your response. I’m not having much luck with either of those – this is the code I pasted into my child theme functions.php
if ( class_exists(‘BuddyPress’) ) {
add_action(‘init’,’mme_redirect_register’);
function mme_redirect_register(){
global $pagenow;
if( ‘wp-login.php?action=register’ == $pagenow ) {
wp_redirect(‘http://members.caravancamping.club/register/’);
exit();
}
}
}but it still redirects to: http://members.caravancamping.club/wp-login.php?action=register
??
also with the second username – I’ve still got exactly the same problems – only just with a different field name?? how to I delete one of these entirely please?
http://members.caravancamping.club/register/thanks again
July 15, 2014 at 12:48 am #185093@mercime
Participantusername appearing twice on registration form
@jaciando1 Change the “User Name” profile field name in the “Profile Details” box -> go to admin menu
Users > Profile Fields and click on the “edit” button under that profile field name.I also appear to have two different register forms???
You can add the following to your theme’s functions.php page:
/* If BuddyPress is active */ if ( class_exists('BuddyPress') ) { add_action('init','mme_redirect_register'); function mme_redirect_register(){ global $pagenow; if( 'wp-login.php?action=register' == $pagenow ) { wp_redirect('http://buddypress.dev/join-us'); exit(); } } }Change
http://buddypress.dev/join-usto your site’s register page.July 13, 2014 at 9:32 pm #185062In reply to: [Resolved] fixing the buddypress lists fields
giuseppe23
ParticipantI dont have in my buddypress.css file
#buddypress ul#activity-streamand#buddypress ul.actitivity-list
I tried to add#buddypress ul#activity-stream { border-style:hidden; } #buddypress ul.actitivity-list { border-style:hidden; } .activity { border-style:hidden; }this is incredible I’m going to be crazy 🙂 I cant find anywhere I deleted all border commands on my css I tried to clear the cookies but nothing happend I have borders and only the border left is ugly I dont have problem for others.
July 13, 2014 at 8:45 pm #185061In reply to: [Resolved] fixing the buddypress lists fields
@mercime
Participant@giuseppe23 I can only guess at what can be done to remove the border based on image you posted alone. Check if you added borders to:
#buddypress ul#activity-streamor#buddypress ul.actitivity-listJuly 13, 2014 at 8:32 pm #185060@mercime
Participant@intristin you can either
a) copy overmember-header.phpfrom second link following this to serverwp-content/themes/your-theme-name/buddypress/members/single/folder and create the button after this line or
b) ask chat devs re what to hook intobp_member_header_actionsJuly 13, 2014 at 9:31 am #185039In reply to: Moved: Reply To: BuddyPress 2.0.1
@mercime
Participant@payra123 I moved your post by creating a new topic. Please do not post in old threads which are months or years old.
downloaded buddypress 2.0.1 for using forum on my site
If you only need a forum, please download bbPress instead https://wordpress.org/plugins/bbpress/
You’ll find installation and usage information at https://codex.bbpress.org/after uploading i cant able to open my site and wordpress login php also showing blank
Please delete the BuddyPress folder from wp-content/plugins/ in your server.
July 12, 2014 at 8:35 pm #185022In reply to: Error: Missing argument for bp_modify_page_title()
Lage
ParticipantGood night from Spain!
I also have problems with themes Elegant Theme …
appears that BuddyPress and themes are not compatible, however I wish to work with these issues …. there is any way to get it??July 12, 2014 at 6:58 pm #185017In reply to: Profile contact form
Henry Wright
ModeratorHi @kypto
Are you using a contact form plugin? You’ll need one because contact form functionality doesn’t come in WordPress or BuddyPress core.
To add a member’s name and email to the form data is easy (ish) but you’ll need a contact form in place first.
-
AuthorSearch Results