Search Results for 'wordpress'
-
AuthorSearch Results
-
February 5, 2016 at 6:32 pm #249513
In reply to: Unable to bulk edit users
shanebp
Moderatorthey say this is a known error
What is a ‘known error’?
400 Bad Request is a general error – not enough info to diagnose.
Turn on wp_debug.
Where exactly are you trying to bulk edit users?
February 5, 2016 at 6:14 pm #249511In reply to: White Website with buddypress active Plugin
dennition
ParticipantI get this error with wp debug
Translated in english it means:
bp_setup_udser was called up incorrectly. The current user is initialized without using $wp->INI(). Notice: bp_setup_current_user wurde fehlerhaft aufgerufen. Der aktuelle Benutzer wird ohne Verwendung von $wp->init() initialisiert. Weitere Informationen: Debugging in WordPress (en) (Diese Meldung wurde in Version 1.7 hinzugefügt.) in .../wp-includes/functions.php on line 3792 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in .../wp-content/plugins/js_composer/include/classes/editors/class-vc-edit-form-fields.php on line 276Why i have trouble with my user name and how can i fix it?
Thanks!
February 4, 2016 at 10:18 pm #249483In reply to: White Website with buddypress active Plugin
February 4, 2016 at 10:15 pm #249482In reply to: 500 Error when I install other plugin
shanebp
ModeratorThe 500 error is very general and it is very difficult to diagnose based on that info alone.
I can activate the EWWW plugin on a BP site without a 500 error.
Google ‘wordpress plugin 500 error’ and try the suggestions.
You can also ask the authors of the EWWW plugin via their support forum.February 4, 2016 at 12:04 pm #249457Henry Wright
ModeratorThere should be plugins available that can do this. Have you tried searching the WordPress Plugin Directory?
February 3, 2016 at 7:54 pm #249437In reply to: Display Role as part of Profile
shanebp
Moderatorhttps://codex.wordpress.org/Function_Reference/get_userdata
Example:
function dlongm_show_role() { $user = get_userdata( bp_displayed_user_id() ); if ( !empty( $user->roles ) && is_array( $user->roles ) ) { foreach ( $user->roles as $role ) echo $role; } } add_action( 'bp_before_member_header_meta', 'dlongm_show_role' );February 2, 2016 at 3:05 pm #249398In reply to: Add Group Category & Cities
Slava Abakumov
ModeratorIt’s possible, but there is no ready-to-use out-of-the-box plugins for that.
Categories: http://wptavern.com/new-plugin-adds-taxonomies-to-buddypress-groups or https://wordpress.org/plugins/bp-group-categoriestypes/
Location: https://github.com/naton/bp-group-location
https://geomywp.com/add-ons/groups-locator/<hr/>
Connected:
https://buddypress.org/support/topic/locationaddress-for-buddypress-groups/February 2, 2016 at 11:55 am #249391In reply to: queries on posting
Slava Abakumov
ModeratorBlog posts:
https://wordpress.org/plugins/new-post-notification/
https://wordpress.org/plugins/notify-users-e-mail/
Other options: http://www.mailpoet.com/post-notify-solutions-wordpress/And I didn’t find anything special for activity updates.
February 2, 2016 at 11:27 am #249387In reply to: I don’t understand some of BuddyPress requirements
Slava Abakumov
ModeratorIf you have WordPress installed with permalinks (so urls are like:
example.com/sample-page, and they work – display the content of the Sample Page) and you can upload images without any errors on Media page in wp-admin area (and can attached/insert into post/page content in WYSIWYG editor) – you are good to go.
That’s basically what those 2 last requirements mean.February 2, 2016 at 8:06 am #249372In reply to: Filter Profile Fields
Mark
ParticipantHi @klame,
I am a newbie at all this too. I discovered that the function you pulled off Buddypress.org doesn’t have to be modified to work. You have to simply copy and paste it in your functions.php file as/is without changing a thing. What matters and needs to be modified is the php to render the members loop on your page (e.g.,
<?php if ( bp_has_members( my_custom_ids( 'location', 'san francisco' ) ) ) : ?>). Adding href tags around it I don’t believe is the right idea. That code goes in your members loop where you want the members to be displayed matching that criteria. In my example I am showing only users in San Francisco. I’m pretty sure you can display the members loop anywhere you want but I haven’t tried that yet. I decided to create a page template and I simply copied the code out of my theme’s buddypress members-loop.php file and pasted it into the template file. You could probably even use the default WordPress members-loop.php file as your base, though if you have a theme you’re better off getting it out of there. I hope this helps. Good luck!February 1, 2016 at 11:30 pm #249367shanebp
ModeratorYou can add profile fields via wp-admin > Users > Profile Fields
You can search those fields with this plugin:
https://wordpress.org/plugins/bp-profile-search/February 1, 2016 at 5:44 pm #249357In reply to: Registration not working
edragonxx
ParticipantI have similar problem. and also I can’t find anywhere here CREATE NEW TOPIC / POST link I am using this one.
When I installed buddypress our site registration option was disabled. So I enabled it now, and then used REPAIR option –> The following active BuddyPress Components do not have associated WordPress Pages: Activate, Register. Repair <– But the problem is that REPAIR does nothing. How to fix that problem and create these registration and acitvate pages?
Also I noticed from installation manual something weird –> Make sure you have pretty permalinks enabled on your WordPress install. <– WTF is that? There in wordpress does not exist option like pretty permalinks. You have plain, numeric, Post name, and other options, but not “pretty permalinks”. Anyway I am using date/postname version at the moment, it should be pretty enough, but still where is that “pretty permalinks” option and where I should find it?
February 1, 2016 at 4:44 pm #249355In reply to: Is there a plugin for reports?
Henry Wright
ModeratorPerhaps not quite what you’re after but @danbp has a community statistics plugin that might be helpful?
https://wordpress.org/plugins/buddy-community-stats/January 31, 2016 at 1:58 am #249320In reply to: Turn off Auto-Activation Email, etc.
discdemo
ParticipantI found a plugin for this: https://wordpress.org/plugins/bp-disable-activation-reloaded/
Now, i just need to edit the post-registration landing page. If anyone can point me to this, I’d be grateful.
January 30, 2016 at 12:04 am #249298In reply to: Registration not working
rileydong
ParticipantThe url there is the server where the website sits.
The same thing happens when I start from 192.241.173.232/wordpress and click signup to go to register page or go directly to 192.241.173.232/wordpress/register. It just return 302 and redirect. Any hint on where to start debugging? Which function/directory/.php file should I look into at this point? (I do know how to locate the function that handles the submit action.)
This is what I put in the general settings for both Site Url and WordPress URL
January 29, 2016 at 8:04 pm #249293In reply to: Restric Group Create
Slava Abakumov
ModeratorJanuary 29, 2016 at 8:01 pm #249292In reply to: how to disable users from leaving a group?
Slava Abakumov
ModeratorTry this: https://buddypress.org/support/topic/disable-leave-group-and-request-membership-buttons/
And try this plugin as well: https://wordpress.org/plugins/buddypress-mandatory-groups/January 29, 2016 at 3:04 pm #249285In reply to: Re-ordering a custom groups loop
Henry Wright
ModeratorAjax would be my first thought. Check out the AJAX in Plugins article for an introduction to that:
https://codex.wordpress.org/AJAX_in_PluginsJanuary 29, 2016 at 10:53 am #249274In reply to: Cannot create groups
LordDunvegan
Participant@slaffik Apologies – I did not see the .htaccess file when I did a ls -l, however it is there:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Do I need to makes changes? Sorry I am not a programmer.
Richard
January 29, 2016 at 9:55 am #249266In reply to: Registration not working
Paul Wong-Gibbs
KeymasterIt looks like you’ve tried all the normal investigative things, so thanks.
Not sure without debugging the code — but why does registration on your site take me to http://192.241.173.232/wordpress/register/ ? Totally different URL etc.
I wonder if that has something to do with it.
EDIT: is this your testing still? Do you have two different WordPress sites?
January 29, 2016 at 9:53 am #249265In reply to: Can i attach a file on private messaging?
Paul Wong-Gibbs
KeymasterI don’t know how well it works, but I found https://wordpress.org/plugins/buddypress-message-attachment/ from a quick search.
January 29, 2016 at 3:33 am #249261In reply to: how to re-order group list?
redblacked
Participantcan I group’s list re-order?
January 28, 2016 at 7:48 pm #249251In reply to: Cannot create groups
Slava Abakumov
ModeratorLook in the WordPress codex.
January 28, 2016 at 5:51 pm #249249In reply to: activation
Turker YILDIRIM
ParticipantI never used a plugin to accomplish this but there are many out there, just google “wordpress email login”
January 28, 2016 at 2:43 pm #249243In reply to: Cannot create groups
Slava Abakumov
ModeratorBecause of no
.htaccessfile (and no WordPress permalinks) BuddyPress will not be working properly. It requires permalinks enabled. On BuddyPress activation you should see this text:
You must update your permalink structure to something other than the default for it to work. -
AuthorSearch Results