BuddyDev

Search

user signature in forums

  • Keymaster
    (BuddyDev Team)
    Posts: 24231
    Brajesh Singh on #46374
    This reply has been marked as private.
  • Participant
    Level: Master
    Posts: 152
    טליה שוורץ on #46406

    signature can be a profile field, that’s from the plugin readme:

    If you are trying to activate user signature on top of BuddyPress installation,
    Add a profile field with name “Signature”. (Profile field name should be correct for the functioning of the plugin).”

    so i am going to buy your data control plugin 🙂 thanks a lot!
    1. for future reference- Can I get an idea of what the discount percentage is?
    2. for creating new role (same as subscriber capabalities) can is use this code:

    <?php
    add_action(‘init’, ‘cloneRole’);

    function cloneRole()
    {
    global $wp_roles;
    if ( ! isset( $wp_roles ) )
    $wp_roles = new WP_Roles();

    $sub= $wp_roles->get_role(‘subscriber’);
    //Adding a ‘new_role’ with all subscriber caps
    $wp_roles->add_role(‘new_role’, ‘Premium member’, $sub->capabilities);
    }
    ?>

    thanks you for this great forum and support!!

  • Keymaster
    (BuddyDev Team)
    Posts: 24231
    Brajesh Singh on #46426

    Hi,
    Thank you for clarifying and purchasing from us.

    2. you may do that or can use any of the role editor plugin to achieve it.

    Regards
    Brajesh

You must be logged in to reply to this topic.

This topic is: not resolved