Search Results for 'wordpress'
-
AuthorSearch Results
-
June 13, 2013 at 1:22 pm #165919
In reply to: Members directory sorting not working
chland
ParticipantCheck the value of the “bp-xprofile-fullname-field-name” entry in the WordPress “wp_options”-table.
SELECT * FROM wp_options WHERE option_name LIKE 'bp-xprofile-fullname-field-name'Its value should match the name of the profile field containing the Member-Name. Usually the same as whats returned by
SELECT name FROM wp_bp_xprofile_fields WHERE id = 1If the value in bp-xprofile-fullname-field-name is invalid (for example: in my case it contained “Name” but I renamed the first profile field to “Lastname, Firstname”), BuddyPress goes bonkers and tries to execute an invalid SQL-query resulting in an empty memberlist.
The main problem is the code located in “plugins\buddypress\bp-core\bp-core-classes.php” around line 260:
} else { $fullname_field_id = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$bp->profile->table_name_fields} WHERE name = %s", bp_xprofile_fullname_field_name() ) ); $this->uid_name = 'user_id'; $sql['select'] = "SELECT DISTINCT u.{$this->uid_name} as id FROM {$bp->profile->table_name_data} u"; $sql['where'][] = "u.field_id = {$fullname_field_id}"; $sql['orderby'] = "ORDER BY u.value"; $sql['order'] = "ASC"; }$fullname_field_id is empty if the value in bp-xprofile-fullname-field-name points to an non-existing fieldname.
Hope this helps others with the same problem.
June 13, 2013 at 11:02 am #165915In reply to: [Resolved] buddypress and localhost
dmd54
ParticipantI am using MAMP. When I installed the plugin I set the register page to a new blank sign up page. when I installed the plugin there was no register or activate page created, that’s why I changed the setting to a new page. If I navigate to that page the site appears but there is no sign up or account registration form. It’s just a blank page.
I am using the responsive theme and I would try using another theme to see if it works, however, I deleted the bb plugin to try reinstalling but now can not. I just receive this error –
“An unexpected error occurred. Something may be wrong with WordPress.org or this server’s configuration. If you continue to have problems, please try the support forums.”
Thanks for the help
June 13, 2013 at 5:53 am #165900In reply to: WordPress Hacks and Snippets to Fight Spam
bp-help
Participant@synaptic
Nice snippets is this your site? I think it should also include the honeypot method which I made a very small plugin with here: https://github.com/bphelp/bp-spam-killer
You could easily use those functions in bp-custom.php etc. I am also liking BuddyDev’s BuddyPress Rate Limit User Activity plugin which provides activity stream throttling based on a time interval. It is however a premium plugin. You can get it here:
I hate spam unless its on a sandwich so thank you for sharing! 🙂June 12, 2013 at 11:57 pm #165890In reply to: Exclude self from members directory
aces
Participanthttps://wordpress.org/plugins/bp-ninja/ ?
I haven’t tried it myself.
I’ve seen code snippets around for a stealth mode but don’t have anything to hand…. https://www.google.com/search?q=buddypress+stealth+mode
June 12, 2013 at 10:39 pm #165885NewKindOfCool
ParticipantBug report filed. Please add yourself to it and add your experiences to it to get this sorted out ASAP.
June 12, 2013 at 10:37 pm #165884In reply to: [Resolved] 404 message when trying to edit profile
@mercime
Participant@tribblehunter use XAMPP
– updated steps using xampp https://make.wordpress.org/core/handbook/installing-a-local-server/installing-xampp/
– adding WP to XAMPP http://wpmu.org/install-wordpress-locally-on-windows-with-xampp/June 12, 2013 at 12:20 pm #165842In reply to: How do I send an email to all members?
Kim Gjerstad
ParticipantThis newsletter plugin allows you to email all your WordPress users:
https://wordpress.org/extend/plugins/wysija-newsletters/
Note: I’m one of the authors. 🙂
June 12, 2013 at 11:28 am #165835In reply to: [Resolved] Activity stream accessible to everyone
bp-help
Participant@ghera74
That is default behavior if you do not have an private community type plugins activated. You can make activity your landing page in dashboard/settings/reading or create a custom menu and add the activity page as a menu item if you don’t want it as a landing page:
https://codex.buddypress.org/user/setting-up-a-new-installation/how-to-set-up-your-main-site-navigation-using-the-built-in-wordpress-menus/
Either way the activity stream is visible to logged-out-users, they just can’t post or comment.June 12, 2013 at 10:55 am #165829In reply to: Disable user without erasing profile data
Prince Abiola Ogundipe
Participant@mistercyril, after a quick search, I found – https://wordpress.org/plugins/user-control/ you can have a look if you can use is for buddypress.
Note: I have not tested this plugin
June 12, 2013 at 8:03 am #165819Henry
MemberI think I’ve come across this myself. I themed my activity pages so assumed the issue was caused by something I had introduced. I suggest you raise the issue at BuddyPress Trac where the developers can pick it up and confirm if it is a bug.
June 12, 2013 at 4:30 am #165812In reply to: How to create a theme specific translation?
poorgeek
ParticipantJune 12, 2013 at 4:22 am #165811chriswinch
ParticipantThanks for your help.
Managed to get it working by using the wordpress user id as you mentioned.June 12, 2013 at 4:17 am #165810In reply to: redirect to profile page?
bp-help
Participant@famous
That is a little strange. Are using mutisite? On a single site BP install the login/logout shows in the sidebar with the Meta Widget. Are you using a full width template? If so you can use this plugin to provide a login in the toolbar which I use with a full page template with WP 3.5.1 and BP 1.7.2 and it works, get it here:
https://wordpress.org/plugins/admin-bar-login/
Please provide as much info as you can on your install. If I can’t help, it will help others to help you. Thanks!June 12, 2013 at 3:39 am #165806In reply to: Buddypress tabs on custom post type template
bp-help
Participant@jhinzo @hgstephengreenberg
You can try this plugin which also has a premium version with more features. Not sure if it will meet your requirements but you can give it a try. Get it here:
https://wordpress.org/plugins/buddypress-custom-profile-menu/Or try this method if your adventurous which I haven’t tested:
http://wordpress.stackexchange.com/questions/16223/add-buddypress-profile-menu-itemJune 12, 2013 at 2:28 am #165803In reply to: Problem transferring (does BP have a new db system?)
@mercime
Participant@number_6 If you activated all of the components in Settings > BuddyPress > Components, 16 BP tables should be created in your site’s database as seen here.
BP interacts with most WP tables in database so you have to port it sitewide. Backup DB manually i.e., phpMyAdmin to computer hard drive, then use this plugin https://wordpress.org/plugins/duplicator/ to help you move your DB. Btw, do not use webhost’s one-click WP installation, upload WP manually and install. You need to be in total control of your site if you want to activate BuddyPress.
June 12, 2013 at 2:17 am #165802In reply to: Registration Breaks Site
@mercime
Participant@jkuzma
– Updated from what WP/BP version to what version?
– How does new registration “break” the site? White screen or 500 error? What shows up in your error logs?
– What random pages show up 404? Pages created in Pages > Add New or BuddyPress pages?
– How did you install WordPress – via webhost one-click install or did you upload WordPress manually? one-click WP install is buggy for BP sites as you need to have full control of your site when you use BuddyPress.June 11, 2013 at 8:39 pm #165789In reply to: [Resolved] Admin Bar
martinm92
ParticipantI am currently working on it locally, I just thought it might be a known issue and quick and easy fix. I think it re-directs by default to the default wordpress login page.
June 11, 2013 at 7:54 pm #165785In reply to: [Resolved] Admin Bar
martinm92
ParticipantI have one other problem, how do I echo an error when people get a wrong username or password? At the moment it re-directs to the default wordpress login, which doesn’t look great..
June 11, 2013 at 4:08 pm #165767In reply to: How to deal with registration
ldjautobody
Participant@bphelp, Wow and thank you for the awesome tutorial. This is perfect! I was actually using the original site I put up as a tempsite until I had the whole Buddy Press and bbpress thing figured out. I am in the process now of building our new site which will up be and running shortly.
The information you sent me is great. The register and log-in pages are wonderful. I am probably going to have to make some changes to our WP theme as I found out just recently that they have published a bbpress child theme which works great with the original WP theme. In fact, I’ll even give them a little plug here…Mysitemyway.com has some awesome premium wordpress themes that are definitely work a “look see” by anyone that is light on WP coding and wants a truly beautiful theme! So there guys…there’s your “plug’o the day!” from LDJ! LOL
Since learning a bunch of new things playing with the old temp site, the new site is going to be formatted completely different. I owe it to everyone here for their help during this learning curve and thank you everybody for all your great advice.
I’ll put up the new url as soon as I get the stuff up and running and I know I’ll be back here to get more help as we move forward with our forum site.
Thanks again for all your help!
Denise (@ldjautobody) 🙂
June 11, 2013 at 4:33 am #165748In reply to: Post Link appears thrice
@mercime
ParticipantNo I didnt try deactivating plugins since I was not sure which plugin is actually causing this error.
Having links showing up twice in Posts when you only posted it once is not normal for any BuddyPress or regular WordPress installation. It’s basic troubleshooting to deactivate plugins either one by one or by batch or all together (except BuddyPress) to find out which plugin is causing the error. Btw, you didn’t mention what theme you are using.
If I click on “add links” , it shows me add link here and then a preview button.
Is that “add links” coming from a plugin? What exactly do you preview after you click “add link”?
June 11, 2013 at 2:18 am #165740In reply to: Arranging members in the member page
@mercime
Participant@ihpalash You might want to look at https://wordpress.org/plugins/buddypress-user-account-type-lite/
June 11, 2013 at 2:17 am #165739@mercime
Participant@thebuded something you should report in Trac https://buddypress.trac.wordpress.org/newticket
Log in using WP/BP username and password. Please include more info about your installation including from what version you upgraded, plugins used, etc.June 11, 2013 at 1:37 am #165737Asynaptic
ParticipantThanks @derdzi – can someone please confirm this? also, can you share it with the Yoast SEO wordpress forum so they can respond?
June 10, 2013 at 5:48 pm #165716In reply to: bbPress and BuddyPress (the fun continues)
danbp
ParticipantThe author answer means that the plugin works only with group forums ?!!!
So you have to search another rating widget who works with bbPress or create it yourself or to configure your buddypress to use group forums instead of a standalone forum.
But as bbP is fully post typed, have you tried to use the plugin’s shortcode ?
https://wordpress.org/support/topic/ratings-in-custom-post-typesJune 10, 2013 at 5:01 pm #165706In reply to: bbPress and BuddyPress (the fun continues)
Nate
ParticipantHere’s the plugin: https://wordpress.org/plugins/rating-widget/
The developer said: “seems like you are using the standalone version of bbPress … we only support BuddyPress’es bbPress forums.”
I don’t have any group forums, as they’re not necessary. Using most recent version of WP & BP under Woo’s Canvas theme. Thanks!
-
AuthorSearch Results