Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 9,476 through 9,500 (of 69,047 total)
  • Author
    Search Results
  • #257841
    idichoo
    Participant

    Hi guys,

    thanks for the reply, I think you have miss understand what i mean.

    At the frontend buddypress user page, every time any user login(include admin) when entered a wrong password is keyed redirect to the wordpress page. I would like to know you have any advice to show wrong password or user name entered instead of redirect to wordpress page.

    And at the frontend buddypress user page, there is no forget password link, what if the user lost his or her password (exclude admin), how can the user receive it password thru email.

    #257837
    danbp
    Participant

    Almost in bp-templates/bp-legacy/css/buddypress.css

    Aside, if you use a tool like Firebug, you may be able to work easier with html, css or js.

    #257835
    junglejim620
    Participant

    Hi buddypresss,

    Oh my, it was NOT buddypress after all, but freaky when I disabled it, it works fine. But over all found out is was one of the bad updated plugin. However in general, buddypress cross over it. FREAKY!!!

    I end up restored the previous wp-content and Database. Still not sure which updated plugin playing with my brains? But now its all good after the restored!!

    Thanks for the link to other info I can read about. 🙂

    danbp
    Participant

    Profiles are handled on the mandatory BP members page.
    And yes you’re supposed to go to your-site/members/USERNAME/profile/ via the usermenu which is in the top-right corner of the toolbar (like on this forum) or from any profile, via the buddynav.

    Glad you got it !

    FYI, see eventl. here:
    https://buddypress.org/support/topic/add-dynamic-menu-link/#post-242555

    danbp
    Participant

    Try this:

    function mohammad_remove_private_message_button( $button ) {
    $user_id = bp_loggedin_user_id();
    
        if ( $user_id == '37' ) // the user ID
    	$button = '';
    
         return $button;
    }
    add_filter( 'bp_get_send_message_button', 'mohammad_remove_private_message_button', 1 , 1 );

    More details here:

    [Resolved] how hide tab only for user? not remove/disable

    lewis1202
    Participant

    I have managed to fix the problem. I created a page called My Account and placed it in the top menu. I was supposed to put the BuddyPress profile page there instead.

    Now im just baffled as to how it was working the other day, considering it’s a different page. Oh well haha. It’s working now anyway.

    Thank you for your prompt replies and help.

    lewis1202
    Participant

    It was working two days ago. Not sure why it has suddenly stopped.

    WP Version – 4.6
    BP Version – 2.6.2

    My Account URL – http://coolgames.co.nz/my-account/

    I am using Gameon Theme.

    Plugin List –

    BackWPup

    BJ Lazy Load

    BuddyPress

    Contact Form by Supsystic

    Content Views

    Content Views Pro

    Google Analytics by MonsterInsights

    Google XML Sitemaps

    MyArcadePlugin Pro

    MyGameListCreator

    MyScoresPresenter

    PopUp by Supsystic

    PopUp by Supsystic PRO

    Revolution Slider

    Shortcodes Ultimate

    Super Socializer

    Uber Login Logo

    W3 Total Cache

    WP Add Custom CSS

    WP Live Chat Support

    WP Live Chat Support Pro

    WP Sitemap Page

    Yoast SEO

    #257822
    danbp
    Participant
    #257813
    danbp
    Participant

    Hi,
    this can be done via a child-theme or with a function to add to bp-custom.php or child’s functions.php
    See examples here: https://codex.buddypress.org/developer/navigation-api/

    #257806
    buddycore
    Participant

    I looked in two places

    I don’t have a clue how to implement these functions, although I am learning.

    #257804
    Henry Wright
    Moderator

    Perhaps that filter hook is for filtering embeds in WordPress content? BuddyPress must have a filter for this. I’ll need to have a dig around…

    #257790
    danbp
    Participant

    Why not making your member directory alphabetical by default ?
    Add this to members-loop placed in /child-theme/buddypress/members/members-loop.php:22

    <?php if ( bp_has_members( bp_ajax_querystring( 'members' ) . 'type=alphabetical' ) ) : ?>

    Members Loop

    Note:
    – member must be approved (by validation mail or admin action) to appear in the list.
    – default behave is that a new member only appear on directory after his first login.

    danbp
    Participant
    #257783
    Paul Wong-Gibbs
    Keymaster
    #257781
    sazler
    Participant

    If anyone else has the same problem I have fixed it by adding some mobile media queries in my custom CSS file for the #buddypress .standard-form #profile-details-section. Although it looks like I will need to setup lots more for different sections as mobile display is not working well for a few different sections.

    #257780
    pixelpushermama
    Participant

    @djpaul Any news on this? That mail bridge plug in did not work for us. We are currently running WP 4.5.3 (I know there is an update available)
    BuddyPress Version 2.6.2
    BuddyPress Edit Activity 1.0.8
    BuddyPress Follow Version 1.2.2
    BuddyPress Forum Editor Version 1.0
    BuddyPress Global Search Version 1.1.4

    Along with
    bbPress 2.5.10
    BuddyBoss Wall Version 1.2.7
    BuddyBoss Media Version 3.1.9
    Along with Memberium and i2SDK

    These appear to be a few revisions beyond when we asked originally and it is still not functioning.
    It has been several months since we have had an operational email notification capability,which is a problem for us, running a paid site we need full functionality. Can you reccomend anything to try or anyone we should consult with?

    #257773
    Paul Wong-Gibbs
    Keymaster

    What version of WordPress, BuddyPress, are you using?

    What theme, and what other plugins do you have active?

    #257772

    In reply to: Register LABEL

    Paul Wong-Gibbs
    Keymaster

    Ah, what’s the profile field type for that? Is it a date field type or a “Birthday” field type?

    Are you using the https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/ plugin ?

    #257771
    Paul Wong-Gibbs
    Keymaster

    @schweizersolutions With your current solution:

    1) If BuddyPress is loaded in this context, I’d strongly recommend you use bp_update_option instead of update_option as this supports all the different configurations of BuddyPress install/configuration.

    2) If you look at bp_version_updater or bp_core_admin_components_settings_handler for example, it does what you’re doing, but it runs the installation routines afterwards. I’d recommend you copy the logic from bp_core_admin_components_settings_handler.

    3) An alternate approach is to filter the bp_new_install_default_components array as long as you can put that in place before BuddyPress loads.

    4) I think activated_plugin might be too early, i.e. before BuddyPress installs. I am not sure, I can’t test right now. BuddyPress’ core routines start from plugins_loaded, and I think that’ll have already be triggered before activated_plugin, so the behaviour will be undefined (i.e. it might install on the next page load, or part-install immediately, and I have no idea if this will break stuff).

    Hope this helps

    #257766
    Paul Wong-Gibbs
    Keymaster

    BuddyPress will try to sync the value of a user’s “Name” field to the First and Last Name fields in their wp-admin user profile.

    To disable this, go to wp-admin Settings > BuddyPress, and disable Profile Syncing.

    #257765

    In reply to: W3 Total Cache

    Paul Wong-Gibbs
    Keymaster

    The Object Cache feature inside W3TC is not compatible with BuddyPress. It does not work properly.

    #257760

    In reply to: buddypress hosting

    buddycore
    Participant

    BuddyPress is solid, shared hosting is cheap but there are many alternatives. Do some research with different hosts and see what they can offer you.

    danbp
    Participant

    @mohammad-sy,

    you can filter the activity stream. Read here:

    Using bp_parse_args() to filter BuddyPress template loops

    You’ll also find many snippets on the forum by searching for “_parse_args”.

    Updates are an activity type ! This is already available in the activity filter.

    #257753
    danbp
    Participant

    @mugwumpman,
    first and last_name fields don’t belong to BuddyPress, but to WP profiles.

    BP use only a field called Name at first install. User can enter their first AND last name in that field. Is this what you’re talking about ?

    After reading your topic on wp.org, it seems that you use those fields to enter datas which are not first and last names, but more for company and company activity or such.

    As you use BP, i would suggest you use the power of xprofile and offer to your user a much better experience by adding a field for a company and another for company activity (or something like that). So you can forget WP’s profile fields and use BP’s xprofile fields.

    WP’s profile field used when BP is activated are: username, email and password.
    And BP adds his mandatory Name field, which can be first, lastname, username or whatever other unique name belonging to a subscriber (which can be a human, a pet, a company….).

    And yo can as many fields you want to the registery or for later on profiles.

    The other problem related to font case is a mistery so far. Can be related to many things such as plugins or theme or custom function. This can be determined by debuging and using one of WP’s default theme and all plugins deactivated.

    No matter to know if you fill a wp or a bp field for this. Both use a textarea, so it’s probably more a css thing somewhere.

    danbp
    Participant

    See in bp-templates/bp-legacy/buddypress/members/single

    and read here for some general guidance. Note: even if only Twenty theme are described as example, you can use (more or less) the same technique for any other theme.

    What ever, all starts by creating a child-theme as very first step.

    Related to your question, do drop down list of the sub nav and hide them in the object nav fields, i think you don’t need to alter a template, but to write a custom function.

    As i can be wrong about you goal, perhaps take also a look to core file bp-core/bp-core-buddybar.php to understand how nav and subnav are instanciated.

    Read also https://codex.buddypress.org/developer/navigation-api/

Viewing 25 results - 9,476 through 9,500 (of 69,047 total)
Skip to toolbar