BuddyBoss Home – Web Support Forums Themes Boss. theme no password change success alert

Viewing 8 posts - 1 through 8 (of 8 total)
  • Question

    #53358
    @surfbuddy

    Hi all, When a user changes their password, there is no on-screen success alert. Do you have a fix for this? Thanks

    Answers

    #53456

    Anonymous
    @

    Hi @surfbuddy, From front it is working please see the screenshot:

    Regards
    Pallavi

    #53622
    @surfbuddy

    It is currently only displaying in member-header div and I have conditional logic that only displays member header on certain pages. How can I have it work normally (flash and disappear) in entry-buddypress-content div?

    #53625

    Anonymous
    @

    It will display at same location where following will be called and it is called in member-header.php

    
    <?php do_action( 'template_notices' ); ?>
    

    Regards
    Varun Dubey

    #53640
    @surfbuddy

    Thanks Varun, I have used that before in content-buddypress.php and added before the content, but it doesn’t work normally (flash and disappear, and styling is missing). How can I make it flash and disappear?

    <div class="entry-buddypress-content">
    <?php do_action( 'template_notices' ); ?>
    <?php the_content(); ?>
    </div>

    #53658

    Anonymous
    @

    Hi @surfbuddy, the styling and flash & disappear coming from buddypress js and if you will change the div and place it to another location then it will not get the exact styling and js.

    Regards
    Pallavi

    #53724
    @surfbuddy

    I see, thank you. Found a quick workaround from https://buddypress.org/support/topic/ability-to-dismiss-template-notices/

    $(document).mouseup(function (e)
    {
    var notice = $(".bp-template-notice");

    if (!notice.is(e.target)
    && notice.has(e.target).length === 0)
    {
    notice.hide();
    }

    });

    #53867

    Anonymous
    @

    🙂 Great
    Regards

Viewing 8 posts - 1 through 8 (of 8 total)
  • The question ‘no password change success alert’ is closed to new replies.