Info
- 8 posts
- 3 voices
- Started 2 years ago by 62gr
- Latest reply from 62gr
- This topic is not resolved
remove website ,Location ,Occupation ,Interests in (register)
-
- Posted 2 years ago #
Hello
I want remove website ,Location ,Occupation ,Interests In (register)
Help me
-
- Posted 2 years ago #
-
- Posted 2 years ago #
sorry but Its not working
Is there another way ?
For example, put in the code style.css ? -
- Posted 2 years ago #
Did you paste the code into a my-profile-fields.php file, and move it into your my-plugins directory... then activate the plugin?
-
- Posted 2 years ago #
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' );
?>
-
- Posted 2 years ago #
Did you activate the plugin via your dashboard?
-
- Posted 2 years ago #
The Occupation field should have disappeared, and two new fields appeared... is that the case for you?
-
- Posted 2 years ago #
is that the case for you?
no -
You must log in to post.