Search Results for 'wordpress'
-
AuthorSearch Results
-
July 16, 2014 at 10:57 am #185174
AIRFieldNotes
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: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:47 am #185163In reply to: How to Delete the BUDDYPRESS account
@mercime
Participant@appinsecurity Sorry, but we do not delete accounts here. https://codex.wordpress.org/Forum_Welcome#Deleting_Accounts
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:12 am #185160In reply to: Updated Buddypress
mayan2014
ParticipantMercine,
Thank you for the quick response!
I already did at which point I realized that it was the update of wordpress that is giving me the error….How do I revert back to the older version of wordpress?
Thanks
Joel
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 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 7:17 pm #185130In reply to: includePHP Member page
victord34
Participantyou must select a page to view the list of members above. but the page I chose it is impossible to define a background or insert the css code in the page.
So I would create a wordpress pages. define my css. AND make an “includephp” of “member list” page in div or other.
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 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 10:54 am #185103In reply to: BuddyDroid – BuddyPress for Android
yzqiang
ParticipantI have installed the wordpress plugin and the Android APP with version 3.1.
But when I connect to my server, the error message is:
org.xmlrpc.android.XMPRPCException:
org.xmlpull.v1.XmlPullParserException:
unexpected type
(position:END_DOCUMENT null@1:1 in jave.io.InputStreamReader@41398690)
My server domain is: http://www.peixunhao.comJuly 15, 2014 at 1:09 am #185094@mercime
Participant@bluep92877 easier this way -> https://wordpress.org/plugins/bp-blog-author-link/
July 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 5:04 pm #185053In reply to: [Resolved] Pages not formatting correctly,
@mercime
Participant@jarith Marking this topic as resolved.
As to removing the “Private” and “Protected” prefices, you could try adding bbPress forum conditional to your function or to the one Konstantin (first comment in that post) posted
e.g.if ( class_exists('bbPress') ) { if ( is_bbpress() ) { // do this } }Undoubtedly, you’ll get additional support at the bbPress forums 🙂
July 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 13, 2014 at 9:29 am #185038Brosnan
ParticipantI had this problem. Solved it by disabling plugins one by one.
I found out that the culprit was the Google Analytics Dashboard for WordPress… aaaarrrgghhhhh!
July 12, 2014 at 7:26 pm #185021Kookidooki
ParticipantJust found this tutorial:
How to Merge / Integrate Multiple WordPress Sites into one MultiSite:
Sounds very easy! Let’s give it a try.
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.
July 12, 2014 at 4:08 pm #185013In reply to: [Resolved] Error in Invitation
@mercime
Participant@leonyipa http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/
At this stage, only security fixes are being done on the BP Default theme so you’d be missing out on the enhancements/improvements added onto the new BP templates which are rendered inside regular WP theme pages as you found out using Twenty Fourteen theme. Check out https://github.com/modemlooper/Buddy-Default where modemlooper has ported the BP Default theme as a regular WP theme, i.e., you could use it with or without BP activated.@mercime
Participant@philmeyer basically some issues still remain on @mentions https://buddypress.trac.wordpress.org/ticket/5565
July 11, 2014 at 7:46 pm #184986In reply to: Display post on certain groups
danbp
ParticipantJuly 10, 2014 at 2:40 pm #184953In reply to: Importing data from existing database to buddypress
steveparkinson
ParticipantNovice here… this should be fun. (July 2014)
I got someone to import users in to my sweetdate (2.6.1)/buddypress (2.5.4) site. The users are there in the WordPress users, but not in the Buddypress site. They don’t even show up in the Pending Activation. I can see them in the SQL Database.
How can I migrate them in to the Buddypress members, searchable, database.
Thanks in advance.
July 8, 2014 at 7:19 pm #184904In reply to: Help troubleshooting group creation error at step 2
r-a-y
KeymasterEnable debugging:
https://codex.wordpress.org/Debugging_in_WordPressAnd see if any error messages are logged or outputted.
July 8, 2014 at 7:13 pm #184902In reply to: bp core load template vs bp get template part
r-a-y
KeymasterI’m guessing you have an older plugin that you want to support with the newer theme compatibility standard.
Since you’re referencing
bp_core_load_template( 'activity/index' )in your example, I’m guessing you are trying to add theme compat for a new slug in the activity directory (eg. example.com/activity/new-slug/)? If so, you’ll want to copy the following code, rename the class and change a few things, so it is applicable to your plugin:
https://buddypress.trac.wordpress.org/browser/tags/2.0.1/bp-activity/bp-activity-screens.php#L301Then you would load up your new class with the
bp_core_load_template()call.if ( class_exists( 'BP_Theme_Compat' ) ) { new BP_Activity_WHATEVER_YOUR_CLASS_IS_CALLED_Theme_Compat; } bp_core_load_template( 'activity/index' ); -
AuthorSearch Results