Search Results for 'wordpress'
-
AuthorSearch Results
-
November 22, 2015 at 9:09 pm #247094
In reply to: Disable messages in Activity Stream
Henry Wright
ModeratorI have no idea if this plugin still functions because it was last updated ~4 years ago, but check out BuddyPress Block Activity Stream Types.
November 20, 2015 at 8:38 pm #247026In reply to: BP 2.4 breaks on page 2 of custom search results
r-a-y
KeymasterI’ve got a fix ready:
https://buddypress.trac.wordpress.org/attachment/ticket/6745/6745.01.patchApply the lines in that patch to your BuddyPress install.
To test this, you’ll need to set
WP_DEBUGtotrueso it will load the unminified version of the javascript:
https://codex.wordpress.org/WP_DEBUGLet me know if this fixes the problem.
November 20, 2015 at 6:17 pm #247012In reply to: How to update avatar user meta?
r-a-y
KeymasterWe do not store avatar data in the database.
We do a look up at the files level instead.
If you want to show an avatar based on a custom avatar stored in the database, you’ll need to use the
'bp_core_fetch_avatar'filter to override how BuddyPress shows avatars:
https://buddypress.trac.wordpress.org/browser/tags/2.4.0/src/bp-core/bp-core-avatars.php?marks=531-546,660-664#L531If you just want to display a user avatar, use the
bp_core_fetch_avatar()function:echo bp_core_fetch_avatar( array( 'item_id' => USER_ID_TO_GRAB_AVATAR_FOR ) );November 19, 2015 at 7:40 pm #246983ShaneValiant
ParticipantHere is the latest error log:
PHP message: WordPress database error Table ‘mysitename.wp_16_bp_xprofile_groups’ doesn’t exist for query SELECT DISTINCT g.id FROM wp_16_bp_xprofile_groups g WHERE g.id = 0 ORDER BY g.group_order ASC made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), call_user_func_array, bp_init, do_action(‘bp_init’), call_user_func_array, woffice_social_fields, xprofile_insert_field_group, BP_XProfile_Group->__construct, BP_XProfile_Group->populate, BP_XProfile_Group::get
PHP message: WordPress database error Table ‘mysitename.wp_16_bp_xprofile_groups’ doesn’t exist for query INSERT INTO wp_16_bp_xprofile_groups (name, description, can_delete) VALUES (‘Social’, ”, 1) made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), call_user_func_array, bp_init, do_action(‘bp_init’), call_user_func_array, woffice_social_fields, xprofile_insert_field_group, BP_XProfile_Group->save
PHP message: WordPress database error Table ‘mysitename.wp_16_bp_xprofile_groups’ doesn’t exist for query SELECT * FROM wp_16_bp_xprofile_groups WHERE name = ‘CoverOptions’; made by require(‘wp-blog-header.php’), require_once(‘wp-load.php’), require_once(‘wp-config.php’), require_once(‘wp-settings.php’), do_action(‘init’), call_user_func_array, bp_init, do_action(‘bp_init’), call_user_func_array, woffice_cover_add_field
PHP message: WordPress database error Table ‘mysitenameNovember 19, 2015 at 6:57 pm #246977In reply to: A Nicer Way To Edit Group Slugs
tonydjukic
ParticipantThanks @henrywright. I installed it and tested it out, doesn’t seem to be even slightest issue with it. @jjj should just push incremental updates that update compatibility so WordPress removes that ‘warning’ message – the plugin works great so it’s a shame that people new to BuddyPress (like myself) are scared away from it for no reason.
November 19, 2015 at 5:54 pm #246971In reply to: Questions about the concept of user profiles
shanebp
ModeratorTricky task… I don’t envy your use case testing!
BP uses the WP user – but stores profile data separately. But some fields are duplicated – like name.
You may have to write profile data to both user meta and xprofile tables.
And then use a conditional re whether the BP Extended Profiles component is enabled.
If it isn’t, then pull from user meta, etc.More info:
xprofile_sync_wp_profile()syncs Xprofile data (nickname, first name and last name) to the standard built in WordPress profile data.xprofile_sync_bp_profile()syncs the standard built in WordPress profile data to XProfile.November 19, 2015 at 2:19 am #246930Henry Wright
ModeratorHey @alessandrat
Welcome to the BuddyPress forum!
1. Have two separate front ends for different user types (with differently configured profiles), appearances, and accesses.
Yes. This can be done with either a plugin (try searching the Plugin Directory) or coded through the Member Types feature introduced in version 2.2.
2. Have a place where shortcode could be put in so that users can take a questionnaire containing likert questions on their profile and/or while creating their profile.
Either a post, page or perhaps even an activity update all spring to mind as possible places to add it.
3. One but not both kinds of users can create their own group (public, semiprivate or private) or forum and browse/ join existing ones
The ability for all members to create new groups comes as standard.
4. One kind of user but not the other needs to be able to set up ways for the other type of user to purchase products (I assume I can use another plugin but will need a place to put the shortcode)
This will need to be either custom coded, or you may find a plugin with the functionality you need.
Hope this info helps!
November 18, 2015 at 10:02 pm #246921In reply to: exclude_by_role function no longer working?
shanebp
ModeratorI don’t know why your function isn’t working, but since you only want subscribers, there are more efficient ways to approach the task.
Here is one:
Review this: https://codex.wordpress.org/Function_Reference/get_usersTry something like:
function subscribers_only() { $subscribers = get_users( array( 'role' => 'subscriber', 'fields' => array( 'ID' ) ) ); $subscribers = implode(",",$subscribers); return $subscribers; }And
$subscribers = subscribers_only(); bp_has_members( bp_ajax_querystring( 'members' ) . '&include=' . $subscribers )November 18, 2015 at 8:02 pm #246912In reply to: How to fix Activations
r-a-y
Keymaster– Make sure email is working from WordPress.
– Tell users to check their spam folder.If that doesn’t work, some have had success with the following plugin(s):
– Mail From: https://wordpress.org/plugins/search.php?type=term&q=mail+from
– A plugin that sends email via SMTP instead of PHP: https://wordpress.org/plugins/tags/smtpNovember 18, 2015 at 5:56 pm #246899In reply to: Sending message to all users in a group
danbp
ParticipantNovember 17, 2015 at 5:37 pm #246857In reply to: z-index issue with 2014 and cover images
r-a-y
KeymasterThanks @joost-abrhahams.
I’ve filed a ticket here:
https://buddypress.trac.wordpress.org/ticket/6738We’ll get this fixed for v2.4.1.
November 17, 2015 at 3:46 pm #246853In reply to: Membership Plugin
jscmal
ParticipantHi, I use Simple WordPress Membership Plugin. It works.
November 17, 2015 at 11:37 am #246848In reply to: BuddyPress 2.4.0 – Pietro
DerAphelion
ParticipantGreat work!
I´m REALY new in WordPress/Buddypress.
Now i have a question:How can i do it in another language now (Buddypress), in this case german needed?
greetings
Aphelion
November 17, 2015 at 12:56 am #246838In reply to: BP 2.4.0 – Group frontpage hierarchy question
r-a-y
KeymasterWe have deprecated support for the bp-default theme since v1.9:
The future of the bp-default themeThat being said, we can look into supporting this feature in bp-default for BP v2.5.0.
November 17, 2015 at 12:30 am #246834In reply to: BP 2.4.0 – Group frontpage hierarchy question
r-a-y
KeymasterYou might have to do a fresh install because BuddyPress 2.4.0 uses new code for the
/groups/single/home.phptemplate:
https://buddypress.trac.wordpress.org/browser/tags/2.4.0/src/bp-templates/bp-legacy/buddypress/groups/single/home.php#L75The code you listed above is older code.
If you already have those changes, then I’m guessing you are using a custom theme with BuddyPress support that has overriden the
groups/single/home.phptemplate. If that is the case, you’ll have to change the group home template to use these new lines.November 16, 2015 at 8:33 pm #246827In reply to: BP 2.4.0 – Group frontpage hierarchy question
r-a-y
KeymasterSince you modified the home.php template, you have to make some adjustments so the new changes will work.
Read the bpdevel post on this:
Get Ready! 2.4.0 will introduce important changes in Groups homesEspecially the last section –
Changes in 2 templates.November 16, 2015 at 7:39 pm #246826In reply to: Extended Profile Repeat Fields
Michael Kracke
ParticipantThis is a theme I have hand built, so there may be something that I don’t have correct.
I am using WordPress: 4.3.1 and BuddyPress 2.4.0
I have gone through and tried deactivating plugins and still no luck. All plugins are up-to-date. Problem seemed to occur when i would create a new field group and delete it. It almost seems like if I had a field then deleted it, it would show up again but as the Name field which is not deletable.
November 16, 2015 at 5:18 pm #246818In reply to: Post On Buddypress Profile
shanebp
ModeratorPlease use the
codebutton when sharing code.
For long pieces of code, please use a service like gist.You can submit an enhancement ticket here. Please search the existing tickets first for entries that already make the same request.
November 16, 2015 at 2:42 pm #246808In reply to: button is unresponsive + a few other issues
josephz94
ParticipantI haven’t uploaded anything to cloud services no, should I?
The following is displayed in my JS console during page load:
calling a builtin Map constructor without new is deprecated and will be forbidden in ES6 GsqdpfQrJbQ.js:332:580
calling a builtin Set constructor without new is deprecated and will be forbidden in ES6 GsqdpfQrJbQ.js:332:580
The content did not change when I pressed the button or when I tried refreshing after the button.I have tested it without and it behaves the same
To enable multi-network on WordPress we have used the plugin WP Multi Network. We have not done anything to BuddyPress? Should we have done something to it? As a school we have multiple networks to support the different populations, general sites, faculty sites, and student sites.
November 15, 2015 at 10:04 pm #246789In reply to: Sidebar not appearing all where it is needed
UgoDimma
ParticipantHey @webgirl
Thanks for your response.
Just as I said, am running buddypress v2.3.4 with wordpress 4.3.1
Am using WPLMS theme by Mr. Vibe It is deeply integrated with buddypress for maximum compatibility, but I don’t know to what extend.
Some plugins am using includes but not limited to;
- Vibe course module
- Vibe custom type
- WooCommerce
- BBPress
- WPLMS Assignment
- WPLMS Dashboard
- WPLMS Events
and some other ones.
The plugins am using, has nothing to do with the sidebar other than to add their own widget if need be. But in the theme files, there are a lot of buddypress instances there.
November 15, 2015 at 6:25 pm #246776In reply to: Sidebar not appearing all where it is needed
Charla
ParticipantWhat plugins are you using?
Version of Buddypress and WordPress Installation?
Are you using custom sidebars?These answers will help others better help you.
If you are using a custom theme, make sure that you’re using the correct Template Hierarchy explained here. https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
November 15, 2015 at 12:17 pm #246766In reply to: How to use bp_member_profile_data when its type URL
BobSD99
ParticipantI think you may want the funtion wp_extract_urls().
So for example:
$url = wp_extract_urls( xprofile_get_field_data( '23', $user->ID ) ); echo "URL: $url[0]";New to WP coding but this worked for me…
November 15, 2015 at 10:57 am #246765Sweeny
ParticipantHello,
I have the same problem installing the WOFFICE-theme (http://themeforest.net/item/woffice-intranetextranet-wordpress-theme/11671924).
Warning: Creating default object from empty value in C:\xampp\htdocs\home\wp-content\plugins\buddypress\bp-xprofile\bp-xprofile-functions.php on line 258
Fatal error: Call to undefined method stdClass::save() in C:\xampp\htdocs\home\wp-content\plugins\buddypress\bp-xprofile\bp-xprofile-functions.php on line 275Sweeny
November 15, 2015 at 1:43 am #246762In reply to: BuddyPress and Global Hide Admin Toolbar
sLa Team
Participant@jeremymh wrote
Has this been resolved in the new version?
Yes! !! This plugin not have any issue …
You have posted this on forum: https://wordpress.org/support/topic/not-working-with-buddypress-installed/ but you have not provided any further information on the configuration used, or other plugins installed, or the conditions in which you experience the alleged problem, for registered and unregistered users, for example, so it is impossible to give assistance. BuddyPress also has to do the settings for the management of Admin Bar or Toolbar.
This plugin works at the administrative level, not at the user level.
What you’re talking about operates at user level, then an administrator, or super admin, has no control of these functions.
IMHO, given his role as moderator, should not make personal comments about plug-ins, and the work of its authors.
Thanks.
November 14, 2015 at 1:47 pm #246744In reply to: (Invite Anyone) Avoid people seeing other members
Henry Wright
ModeratorYou should ask on the plugin’s support forum. Also, something that might be of interest to you, there’s a new invitations API in progress. See #6210.
-
AuthorSearch Results