I have the following code for my Facebook Registration Social Plugin:
<iframe src="https://www.facebook.com/plugins/registration?
client_id=xxxxxxxxxxxxxxxx&
redirect_uri=http://www.pingxxxxxx.com/facebook_registration_plugin/fbwe/trial.php&
fields=[
{'name':'name'},
{'name':'email'},
{'name':'location'},
{'name':'gender'},
{'name':'birthday'},
{'name':'about', 'description':'About Youtself', 'type':'text'},
]"
scrolling="auto"
frameborder="no"
style="border:none"
allowTransparency="true"
width="100%"
height="330">
</iframe>
I want to make the last field i.e "about" optional to the user. This field
{'name':'about', 'description':'About Youtself', 'type':'text'},
Can anyone tell me how this can be done ?