<div dir="ltr"><div class="gmail_default" style="font-family:courier new,monospace">Thank you Eric for replying,</div><div class="gmail_default" style="font-family:courier new,monospace"><br></div><div class="gmail_default" style="font-family:courier new,monospace">Like I said, this started happening after I renamed the field. Could this be why?</div></div><div class="gmail_extra"><br><div class="gmail_quote">On 4 February 2015 at 10:52, Erik Stielstra <span dir="ltr">&lt;<a href="mailto:info@erikstielstra.nl" target="_blank">info@erikstielstra.nl</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi mto,<br>
<br>
I can not reproduce your problem. I copied the code in hello.install, renamed the function to hello_install(), enabled the module and the field was visible in the account form and the user page. Try you code again in on a D7 core, out of the box. Is must be some interaction with other code or styling.<br>
<br>
Regards,<br>
Erik Stielstra<br>
<div class="HOEnZb"><div class="h5"><br>
<br>
<br>
&gt; On 4 feb. 2015, at 08:35, Muzaffer Tolga Ozses &lt;<a href="mailto:tolga@ozses.net">tolga@ozses.net</a>&gt; wrote:<br>
&gt;<br>
&gt; Hi,<br>
&gt;<br>
&gt; I&#39;ve got the below code. After enabling the module, the field is seen disabled in /admin/config/people/accounts/display/full. Furthermore, even if I enable it, it is not on user account page, even though it is visible in dpm() output. This started happening after I changed the field name.<br>
&gt;<br>
&gt; &lt;?php<br>
&gt; /**<br>
&gt;  * Implements hook_install().<br>
&gt;  */<br>
&gt; function tckn_kontrol_install() {<br>
&gt;   $field = array(<br>
&gt;     &#39;field_name&#39; =&gt; &#39;field_tckn&#39;,<br>
&gt;     &#39;type&#39; =&gt; &#39;text&#39;,<br>
&gt;     &#39;settings&#39; =&gt; array(<br>
&gt;       &#39;max_length&#39; =&gt; 11,<br>
&gt;     ),<br>
&gt;   );<br>
&gt;   $instance = array(<br>
&gt;     &#39;field_name&#39; =&gt; &#39;field_tckn&#39;,<br>
&gt;     &#39;entity_type&#39; =&gt; &#39;user&#39;,<br>
&gt;     &#39;bundle&#39; =&gt; &#39;user&#39;,<br>
&gt;     &#39;required&#39; =&gt; TRUE,<br>
&gt;     &#39;label&#39; =&gt; t(&#39;TCKN&#39;),<br>
&gt;     &#39;description&#39; =&gt; t(&#39;Enter your TCKN.&#39;),<br>
&gt;     &#39;settings&#39; =&gt; array(<br>
&gt;       &#39;user_register_form&#39; =&gt; TRUE,<br>
&gt;     ),<br>
&gt;     &#39;display&#39; =&gt; array(<br>
&gt;       &#39;default&#39; =&gt; array(<br>
&gt;         &#39;label&#39; =&gt; &#39;above&#39;,<br>
&gt;         &#39;type&#39; =&gt; &#39;text_textfield&#39;,<br>
&gt;       ),<br>
&gt;     ),<br>
&gt;     &#39;widget&#39; =&gt; array(<br>
&gt;       &#39;settings&#39; =&gt; array(<br>
&gt;         &#39;size&#39; =&gt; 12,<br>
&gt;       ),<br>
&gt;     ),<br>
&gt;   );<br>
&gt;   field_create_field($field);<br>
&gt;   field_create_instance($instance);<br>
&gt; }<br>
&gt; function tckn_kontrol_uninstall() {<br>
&gt;   $instance = array(<br>
&gt;     &#39;field_name&#39; =&gt; &#39;field_tckn&#39;,<br>
&gt;     &#39;bundle&#39; =&gt; &#39;user&#39;,<br>
&gt;     );<br>
&gt;   field_delete_field($instance[&#39;field_name&#39;]);<br>
&gt; }<br>
&gt;<br>
&gt; ​Thank you in advance for replying.​<br>
&gt;<br>
&gt; --<br>
&gt; mto<br>
<br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr">mto</div></div></div></div>
</div>