Search Results for 'wordpress'
-
AuthorSearch Results
-
January 30, 2016 at 12:04 am #249298
In 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.January 28, 2016 at 2:19 am #249224In reply to: how to re-order group list?
redblacked
Participantcan I group’s list re-order?
January 28, 2016 at 1:06 am #249217In reply to: activation
Turker YILDIRIM
ParticipantIt is not possible by default but you can use plugins to add this ability into WordPress (and BP also)
January 27, 2016 at 8:45 am #249187In reply to: Comments in Activity Stream
Slava Abakumov
ModeratorThere is such setting: http://take.ms/iD38m
It should be checked.And there is also such ticket in trac: https://buddypress.trac.wordpress.org/ticket/6482
It will allow comments syncing between activity stream item and posts (so they will appear in both places – very handy). This feature will be included into upcoming (in March) BuddyPress 2.5.January 26, 2016 at 9:12 pm #249171In reply to: uploading profile photo edge
Slava Abakumov
ModeratorThis is a bug in BuddyPress.
Here is a new ticket: https://buddypress.trac.wordpress.org/ticket/6846January 26, 2016 at 9:04 pm #249170Slava Abakumov
Moderatorbp_get_activity_content_body– that’s the filter you might need.
See functionbp_get_activity_content_body()for details.
General idea (you will need a bit of regexp knowledge):
1) search in activity content for<iframekeyword.
2) if it exists – wrap it with thedivyou need
3) That’s it. This will be done on a fly for each item in activity directory. This is generally a bad idea, but no other options that I see.Or you can try a bit different approach, like using Fitvids (see this plugin https://wordpress.org/plugins/fitvids-for-wordpress/ or https://wordpress.org/plugins/dw-fitvids/)
January 26, 2016 at 1:00 pm #249145peter-hamilton
ParticipantI had same problem during my first go on BuddPree/Wordpress, found problem to be my theme which left no space in members header to show default links for this.
Did what @danbp mentioned and got it fixed with css.
Good luck
January 26, 2016 at 8:59 am #249137danbp
ParticipantHi,
this will be a custom work on your site admin and concerns principaly wordPress.
Read here how to do add a custom column on user’s list.Here the function reference you’ll need to use.
Something like this you have to add to bp-custom.php or your child-theme functions.php
function andrea_columns( $output, $column_name, $user_id ) { /* do something*/ } add_action( 'manage_users_custom_column', 'andrea_columns', 10, 3 );January 26, 2016 at 8:16 am #249128In reply to: where is edit this?
danbp
ParticipantJanuary 26, 2016 at 1:39 am #249114In reply to: Setting up activated users with stored metadata
Xtremefaith
ParticipantStill working on this, I discovered something while debugging:
1) If I set my priority to 1 like so:
add_action('bp_core_activated_user', array( $this, 'setup_registration_metadata'), 1 );then in my
setup_registration_metadata()function I useadd_user_meta()to capture thefirst_name&last_namevalues at that point in time. Thankfully it makes an entry in the usermeta table with the expected value fromget_user_meta($user_id, 'first_name', true)2) Unfortunately, something else apparently is hooked afterwards (possibly a method from the “Enable BuddyPress to WordPress profile syncing”, which then overrides any value I had set for those fields so that in the end the WordPress fields are now incorrect or wiped.
It seems apparent to me that the “Enable BuddyPress to WordPress profile syncing” option is the culprit, but would that be a bug that the setting is grabbing the wrong values because even if I don’t hook into
bp_core_activated_userthe meta values that were successfully stored at registration are then wiped during activation? For example:- first_name becomes the username
- last_name is cleared completely
Setting the priority to 20 the results show that by that point the originally stored
meta_value(s) have already been wiped.January 25, 2016 at 9:24 pm #249110Slava Abakumov
ModeratorYou should definitely take a look at this ticket in BP trac – #6592.
It’s all about the future of emails in BuddyPress. Please test and provide your feedback there in a ticket. Thanks a lot!January 24, 2016 at 4:11 pm #249065In reply to: Getting user_ids from database error
shanebp
Moderator‘WordPress database error: [Unknown column ‘user_id’ in ‘field list’]’
There is no
user_idfield inbp_xprofile_fields.
The correct table isbp_xprofile_data.valueis a text field, so you need quotes:AND value = '45'";Instead of
AND value !empty";tryAND value != ''";$wpdb->get_varreturns a single value. Try$wpdb->get_col.Your issues could have been solved by examining the table structure and reading reference docs like https://codex.wordpress.org/Class_Reference/wpdb.
mervinpearce
Participant*** Resolved ***
All I had to do is create a Register and Activate page under WordPress. As simple as that.Suggestion, can activation of BuddyPress Plugin not check for Register and Activate pages and if not found create default ones?
regards & thanks
January 23, 2016 at 4:55 pm #249045In reply to: BP pages trigger 404
mervinpearce
ParticipantCreated two WordPress sites with buddy press. I am using a Bossbuddy theme and it is just annoying that a register will trigger a 404. This problem is scattered all over the postings. Is there a single source for solving this??
It goes to http://webaddress/register
January 23, 2016 at 2:13 pm #249038In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participant<?php /** * BuddyPress - Users Profile * * @package BuddyPress * @subpackage bp-default */ ?> <?php if ( bp_is_my_profile() ) : ?> <div class="item-list-tabs no-ajax" id="subnav" role="navigation"> <ul> <?php bp_get_options_nav(); ?> </ul> </div><!-- .item-list-tabs --> <?php endif; ?> <?php do_action( 'bp_before_profile_content' ); ?> <div class="profile"> <?php switch ( bp_current_action() ) : // Edit case 'edit' : bp_get_template_part( 'members/single/profile/edit' ); break; // Change Avatar case 'change-avatar' : bp_get_template_part( 'members/single/profile/change-avatar' ); break; // Change Cover Image case 'change-cover-image' : bp_get_template_part( 'members/single/profile/change-cover-image' ); break; // Compose case 'public' : // Display XProfile if ( bp_is_active( 'xprofile' ) ) bp_get_template_part( 'members/single/profile/profile-loop' ); // Display WordPress profile (fallback) else bp_get_template_part( 'members/single/profile/profile-wp' ); break; // Any other default : bp_get_template_part( 'members/single/plugins' ); break; endswitch; ?> </div><!-- .profile --> <?php do_action( 'bp_after_profile_content' ); ?> -
AuthorSearch Results