BuddyDev

Search

Replies

  • Participant
    Level: Initiated
    Posts: 5
    Ioannis Katantonakis on #50538

    Please ignore – it is working fine

  • Participant
    Level: Initiated
    Posts: 5
    Ioannis Katantonakis on #50537

    I need the opposite functionality. When a user select Only Me, then I need the profile to be hidden both on Members Directory and on the Groups Member directory. Is there any way to achieve that?

  • Participant
    Level: Initiated
    Posts: 5
    Ioannis Katantonakis on #50536

    Problem resolved with custom CSS

    ‘ .bppv-visibility-settings-block input[type=radio] {
    -webkit-appearance: block;
    }’

  • Participant
    Level: Initiated
    Posts: 5
    Ioannis Katantonakis on #50535

    Problem resolved with custom CSS
    .bppv-visibility-settings-block input[type=radio] {
    -webkit-appearance: block;
    }

    Thank you

  • Participant
    Level: Initiated
    Posts: 5
    Ioannis Katantonakis on #50531

    The problem is that radio buttons do not show. Please see html below

    <form name=”bp-profile-visibility_settings” method=”post” class=”standard-form”>
    <div class=”bppv-visibility-settings-block”>

    <label> List in members directory?</label>

    <div class=”radio”>
    <label><input type=”radio” value=”no” name=”bp_exclude_in_dir” />Yes</label>
    <label>
    <input type=”radio” value=”yes” name=”bp_exclude_in_dir” checked=’checked’ checked=’checked’ />No </label>
    </div>

    <p class=”help-block”> If you select No, You won’t be listed in the members directory.</p>

    </div>