BuddyDev

Search

Replies

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: BuddyBlog Pro Issues #35218

    Thank you for your quick response.

    https://prnt.sc/wfh5od

    as you can see in the screenshot labels & keys are the same but…
    Help appreciated.
    Bruno

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Buddyblog pro suggestions #35206

    Hi there,

    I take the liberty of continuing this thread to keep track of all feature requests in one place.

    I suggest adding to each custom field an optional user text field to describe the purpose of the field.
    Add an option for checkboxes and radio buttons to have the option to display them horizontally or vertically.
    Add an option to define the overall width of the field (by default 100%), but which can also be 30% or 50% to display fields side by side.

    Thank You

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Buddyblog Pro – Beta Version #34978

    Thank you so much.
    I’ll check it next week and come back to you.

    It looks really cool.
    Bruno

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Buddyblog Pro – Beta Version #34953
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Specific Group Moderator/Admin rights #33994

    Hi Brajesh,
    Yes, In my Buddypress environment I have 20 private groups with their own forums.
    A user can access to one or several specific groups.
    Only admin can accept members in its group. And a user can be admin for one group and user only to to another group. So I ask if there is a way to give a user admin rights for a specific group. eg he/she is admin for group dentist, user for group therapists and have no access to group oncologists.
    Hope I’m clear enough.
    Thank you
    Bruno

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Buddyblog Pro – Beta Version #33546
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Buddyblog Pro – Beta Version #33140

    Is there anybody ?
    😉

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Buddyblog Pro – Beta Version #33063

    Hello Brajesh
    Any news?

  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Conditional Admin Bar in frontend #32658
    This reply has been marked as private.
  • Participant
    Level: Enlightened
    Posts: 89
    Bruno Verrier on in reply to: Conditional Admin Bar in frontend #32657

    Hi Brajesh,

    Ok, I’m not a PHP guy (I’m a graphist) anyway.
    Here is the code I created. Is there an easier way to do this?

    ‘// Update Admin Toolbar Function
    function my_update_adminbar($wp_adminbar) {

    // remove unnecessary items
    $wp_adminbar->remove_node(‘wp-logo’);
    $wp_adminbar->remove_node(‘bp-login’);
    $wp_adminbar->remove_node(‘new-content’);
    $wp_adminbar->remove_node(‘site-name’);
    $wp_adminbar->remove_node(‘search’);
    }
    function my_update_adminbar_modo($wp_adminbar) {

    // remove unnecessary items
    $wp_adminbar->remove_node(‘wp-logo’);
    $wp_adminbar->remove_node(‘bp-login’);
    $wp_adminbar->remove_node(‘site-name’);
    $wp_adminbar->remove_node(‘new-media’);
    }

    // admin_bar_menu hook action if not admin
    if (! is_user_logged_in()) {
    add_filter(‘show_admin_bar’, ‘__return_false’);}
    elseif ( is_user_logged_in() && ! current_user_can( ‘publish_forums’ )) {
    add_action(‘admin_bar_menu’, ‘my_update_adminbar’, 999);}
    elseif ( is_user_logged_in() && current_user_can( ‘publish_forums’ )) {
    add_action(‘admin_bar_menu’, ‘my_update_adminbar_modo’, 999);}
    elseif ( current_user_can( ‘manage_options’ ) ) {
    add_filter(‘show_admin_bar’, ‘__return_true’);
    }’
    Thx