Forums

Join
bbPress Support ForumsInstallationremove website ,Location ,Occupation ,Interests in (register)

Info

Tags

remove website ,Location ,Occupation ,Interests in (register)

  1. Hello

    I want remove website ,Location ,Occupation ,Interests In (register)

    Help me

  2. sorry but Its not working

    Is there another way ?
    For example, put in the code style.css ?

  3. Did you paste the code into a my-profile-fields.php file, and move it into your my-plugins directory... then activate the plugin?

  4. I paste this code
    into my-profile-fields.php file
    into my-plugins
    but its not working !!
    this code :

    <?php

    /*
    Plugin Name: My Profile Fields
    Description: My profile fields for my lovely forums
    Version 1.0
    */

    function my_profile_fields( $fields ) {
    /* This removes the Occupation profile field: */
    unset( $fields['occ'] );
    /* This adds a new optional field called Favourite Band: */
    $fields['faveband'] = array(0,'Favourite Band');
    /* This adds a new *required* field called State: */
    $fields['state'] = array(1,'State');
    /* You must return the array at the end of the function: */
    return $fields;
    }

    add_filter( 'get_profile_info_keys', 'my_profile_fields' );

    ?>

  5. Did you activate the plugin via your dashboard?

  6. The Occupation field should have disappeared, and two new fields appeared... is that the case for you?

  7. is that the case for you?
    no

  8. You must log in to post.