Search Results for 'wordpress'
-
AuthorSearch Results
-
January 28, 2016 at 2:19 am #249224
In 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' ); ?>January 23, 2016 at 1:01 pm #249031In reply to: Hide or delete tab Profile ( Base)
Hellbounds
Participantnot working ..
/* Theme Name: Sweetdate (shared on themelot.net) Description: More than a WordPress dating theme Author: SeventhQueen Author URI: http://themeforest.net/user/SeventhQueen Version: 2.9.2 Tags: dating, clean, responsive, creative, minimal, modern, landing page, social Text Domain: kleo_framework License: GNU General Public License License URI: license.txt */ @import url("assets/styles/app.css"); /* * DO NOT EDIT THIS FILE * * If you want to edit/add styles you need to enable the child theme and add your custom styles there. */ #buddypress .profile h4{display:none !important}January 22, 2016 at 8:39 pm #249007In reply to: Buttons + Tabs Loading Whole Site Into Template
Andrew Tibbetts
ParticipantThought I had found the silver bullet here:
which includes a check for
! ( defined( 'DOING_AJAX' ) && DOING_AJAX )…still has a redirect loop when performing the ajax actions.The search continues…
January 22, 2016 at 4:00 pm #248997In reply to: Members/user bulk upload
danbp
ParticipantJanuary 22, 2016 at 12:03 pm #248981In reply to: Members/user bulk upload
danbp
ParticipantThis is a basic WordPress question.
You can do that via phpmyadmin if you’re confortable with mysql or use a plugin. Search on plugin repo for CSV importer or similar keywords.January 21, 2016 at 10:21 pm #248972In reply to: There was an error cropping your profile image
Slava Abakumov
ModeratorWhat about default WordPress cropping? Does it work? Maybe the problem is in the access permissions to
/uploadsdirectory.Other possible issue – do you have PHP image manipulation modules installed and activated?
January 21, 2016 at 10:05 pm #248971In reply to: new user emails
Slava Abakumov
ModeratorYou can try this plugin: https://wordpress.org/plugins/bp-disable-activation-reloaded/
But you should not do this – anyone will be able to register with fake emails.January 21, 2016 at 1:42 pm #248955In reply to: Add new activity when using wp_create_user?
shanebp
Moderatorwp_create_userreturns the user id if there are no errors.
https://codex.wordpress.org/Function_Reference/wp_create_userSo try:
$user_id = wp_create_user( // etc ); if( is_wp_error( $user_id) ) echo $user_id->get_error_message(); else bp_update_user_last_activity( $user_id, bp_core_current_time() );January 20, 2016 at 2:12 pm #248911In reply to: Error Posting Comments
Manoj Chacko
ParticipantI did check the theme before with twenty fifteen and the error was still there, we currently using a studiopress theme. But I checked it again with twenty fifteen and the issue remains.
1. Which version of WordPress are you running?
WordPress 4.3.22. Did you install WordPress as a directory or subdomain install?
Directory3. If a directory install, is it in root or in a subdirectory?
Root4. Did you upgrade from a previous version of WordPress? If so, from which version?
Yes, don’t remember which version it was 4.2.* I think5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting.
Yes6. Which version of BP are you running?
BuddyPress 2.4.3.7. Did you upgraded from a previous version of BP? If so, from which version?
yes, I think it was buddypress 2.2.*8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
Yes,
Akismet; BuddyPress; BuddyPress Docs; BuddyPress Group Email Subscription; BuddyPress Sitewide Activity Widget; CustomPress; Google Analytics +
ImageInject; Jetpack by WordPress.com; More Privacy Options; Multisite Plugin Manager; New Blog Templates; Site Categories; TinyMCE Advanced
Ultimate Branding; User Role Editor; WordPress Importer; WP Author Slug; WPMU DEV Dashboard; WPMU Ldap Authentication;9. Are you using the standard WordPress theme or customized theme?
Studiopress theme (Tested with twenty 15 as well)10. Have you modified the core files in any way?
No
11. Do you have any custom functions in bp-custom.php?
No
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in?
BBpress Version 2.5.813. Please provide a list of any errors in your server’s log files.
Under the windows event viewer is an error
“Faulting application name: httpd.exe, version: 2.4.16.0, time stamp: 0x55a22a64
Faulting module name: php5ts.dll, version: 5.6.12.0, time stamp: 0x55c3b699”
Happens whenever this error occurs.
Nothing related within the apache logs That I can see.14. Which company provides your hosting?
University Hosted (Temple University)
15. Is your server running Windows, or if Linux; Apache, nginx or something else?
Windows running XamppJanuary 19, 2016 at 9:39 pm #248870In reply to: separate languages for wordpress and buddypress
Slava Abakumov
ModeratorSeparate languages – no, because all the plugins (and BuddyPress is a plugin) use the same language as the system. Because of the amount of hooks/filters in WordPress it’s nearly impossible (or very time and/or resources consuming) to create a reliable solution, that will switch language for plugins, but will not for WordPress.
The easiest way is to have
/wp-adminin one language, and front-end – in another.
Here is the solution: https://wordpress.org/support/topic/different-languages-for-front-end-and-back-end?replies=5January 19, 2016 at 3:02 pm #248855In reply to: Error Posting Comments
Manoj Chacko
ParticipantHi,
I am running WordPress 4.3.2 and BuddyPress 2.4.3. BBpress Version 2.5.8 . Issue started happening couple of versions back. Installed in the root (using Xampp) It was working fine before wordpress/buddypress upgrade past summer.
Issue is whenever user post a comment, it think for a second and gives out an error.
Error, sometimes on some browser is just a error page, sometimes it s shows duplicate post error.But when I go back refresh the page. The comment was published. So something is happening after comment gets published and it has to redirect to the page.
I have a bunch of plugins installed, but as rule of elimination I tried different combination. by removing and putting in plugin one by one.
Conclusion issue is with WordPress/Buddypress/Akisment combo. with just wordpress and akismet it worked. just wordpress and buddypress it worked. With all three issue reappears, I have been troubleshooting it with Akismet first, But does not look like they are causing the issue.I can give access to my site to one of the moderators or developer if it helps.This issue is kind of becoming critical now.
Thanks
ManojJanuary 19, 2016 at 12:30 am #248814In reply to: HOw to add a payment to registration form
Hastig
ParticipantPlugins are the best way to go if you want to save yourself from developing something from scratch.
Here’s one of many comparison reviews between two possible options.
-
AuthorSearch Results