Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 5,176 through 5,200 (of 22,651 total)
  • Author
    Search Results
  • #247094
    Henry Wright
    Moderator

    I have no idea if this plugin still functions because it was last updated ~4 years ago, but check out BuddyPress Block Activity Stream Types.

    #247026
    r-a-y
    Keymaster

    I’ve got a fix ready:
    https://buddypress.trac.wordpress.org/attachment/ticket/6745/6745.01.patch

    Apply the lines in that patch to your BuddyPress install.

    To test this, you’ll need to set WP_DEBUG to true so it will load the unminified version of the javascript:
    https://codex.wordpress.org/WP_DEBUG

    Let me know if this fixes the problem.

    #247012
    r-a-y
    Keymaster

    We 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#L531

    If 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
    ) );
    #246983
    ShaneValiant
    Participant

    @doublef

    Here 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 ‘mysitename

    #246977
    tonydjukic
    Participant

    Thanks @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.

    #246971
    shanebp
    Moderator

    Tricky 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.

    Henry Wright
    Moderator

    Hey @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!

    #246921
    shanebp
    Moderator

    I 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_users

    Try 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 )
    #246912

    In 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/smtp

    #246899
    danbp
    Participant
    #246857
    r-a-y
    Keymaster

    Thanks @joost-abrhahams.

    I’ve filed a ticket here:
    https://buddypress.trac.wordpress.org/ticket/6738

    We’ll get this fixed for v2.4.1.

    #246853

    In reply to: Membership Plugin

    jscmal
    Participant

    Hi, I use Simple WordPress Membership Plugin. It works.

    #246848
    DerAphelion
    Participant

    Great 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

    #246838
    r-a-y
    Keymaster

    We have deprecated support for the bp-default theme since v1.9:
    The future of the bp-default theme

    That being said, we can look into supporting this feature in bp-default for BP v2.5.0.

    #246834
    r-a-y
    Keymaster

    You might have to do a fresh install because BuddyPress 2.4.0 uses new code for the /groups/single/home.php template:
    https://buddypress.trac.wordpress.org/browser/tags/2.4.0/src/bp-templates/bp-legacy/buddypress/groups/single/home.php#L75

    The 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.php template. If that is the case, you’ll have to change the group home template to use these new lines.

    #246827
    r-a-y
    Keymaster

    Since 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 homes

    Especially the last section – Changes in 2 templates.

    #246826
    Michael Kracke
    Participant

    This 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.

    #246818
    shanebp
    Moderator

    Please use the code button 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.

    #246808
    josephz94
    Participant

    I 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.

    #246789
    UgoDimma
    Participant

    Hey @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.

    #246776
    Charla
    Participant

    What 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/

    #246766
    BobSD99
    Participant

    I 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…

    #246765
    Sweeny
    Participant

    Hello,

    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 275

    Sweeny

    #246762
    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.


    @danbp
    ,

    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.

    #246744
    Henry Wright
    Moderator

    @startershut

    You 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.

Viewing 25 results - 5,176 through 5,200 (of 22,651 total)
Skip to toolbar