BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25205

    You are welcome Philip.

  • Keymaster
    (BuddyDev Team)
    Posts: 25205

    Hi Lefteris ,
    Thank you for the question.

    I am sorry, I am unable to look into the code and assist with it currently.

    My suggestion will be to use Deactivate Account plugin and enable it for the roles. Use localization to achieve the message. When a user deactivates their account, you will get an email and delete them.

    That is almost same experience.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205
    Brajesh Singh on in reply to: page header and cover photos #48477
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25205

    Hi Nik,
    I have tested it now.
    It is not appearing for us even if we enable the submission/pending.

    Can you please enable WP debug logging and share me the log. The only possibility is calling an undefined function related to group but that will be very strange.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205
    Brajesh Singh on in reply to: BuddyBlog – Taxonomies #48475

    Hi Nik,
    Thank you for your patience.
    This was an issue in BuddyBlog Pro. My apologies for missing it.
    I have fixed it now.

    Please do note that you must specify a default term if you do not want all terms to be selected. This will work with our release coming up this week.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205
    Brajesh Singh on in reply to: Disable ajax in follow button #48474

    Hi Tosin,
    Hope you are doing well.
    I had a look at the plugin and it does not provide an entry point to disable the ajax.

    you may try adding this code to see if it works(we are turning of event handler using js)

    
    
    /**
     * Disable ajax for follow button
     */
    function tosin_disable_ajax_bp_follow() {
    	?>
    	<script>
            (function ($) {
                let $itemButtons = null;
                if ($('body.bp-nouveau').length) {
                    $itemButtons = $("ul.member-header-actions");
                } else {
                    $itemButtons = $("#item-buttons"),
                }
    
                if ($itemButtons && $itemButtons.length) {
                    $itemButtons.off('click', '.follow-button a');
                }
            })(jQuery);
    
    	</script>
    	<?php
    }
    
    add_action( 'wp_footer', 'tosin_disable_ajax_bp_follow', 100 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205
    Brajesh Singh on in reply to: [Resolved] Contact Form Widget #48473

    Hi John,
    Thank you for checking.
    It will be available by day end Tuesday.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205
    Brajesh Singh on in reply to: [Resolved] Visitor Tab issue #48472

    Also, is there any chance that you are using profile visibility plugin? That can cause the members to be hidden.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205
    Brajesh Singh on in reply to: [Resolved] Visitor Tab issue #48471

    Hi Jimmy,

    Recent visitors does not add any css, so it is probably some markup/theme compat issue. Please link me and I will assits.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25205

    Hi Philip,
    Welcome back.

    This is the expected behaviour with profile completion.

    Once a profile is marked as complete, we store a user meta with the user and a user with this meta will never be checked again for profile completion unless the user updates their profile again.

    This is for efficiency purpose. For that reason, the only way to re-enforce checking will be to delete the user meta ‘_has_required_field_data’ for all users.

    I don’t see any other way around in current version. There may be a better solution in future version where we could simply increment a value when admin changes profile fields and use that for comparison/flag.

    Regards
    Brajesh