Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

In my site I can have 3 perfectly working versions (as shown in this image) of the Facebook Registration Plugin (Iframe, XFBML, and HTML5, all taken from developers.facebook.com), the problem is I want the registration form in the body of a registration dedicated page, instead of the sidebar, but if I paste the same exact codes of each version from the sidebar to the content of that dedicated page they won't work, not anyone, you can see by yourself at http://www.manuelmedina.com.mx/registro/. (Note the forms in sidebar are text widgets, and for the dedicated page I'm pasting the codes in the page-editor, you know, wp-admin/post.php?post=XXX&action=edit).

It makes no sense to me because the Login Button Plugin works perfectly both in sidebar (at top of it) and in the body of the registration page, as you may see in the same link, above the not-working Registration Plugins.

The codes I'm using are:

Iframe

  <iframe src="https://www.facebook.com/plugins/registration.php?
               client_id=XXXXXXXXXXXXX&
               redirect_uri=http%3A%2F%2Fmanuelmedina.com.mx%2Fgracias%2F&
               fields=name,birthday,gender,location,email"
          scrolling="auto"
          frameborder="no"
          style="border:none"
          allowTransparency="true"
          width="100%"
          height="330">
  </iframe>

XFBML

  <div id="fb-root"></div>
    <script src="https://connect.facebook.net/es_LA/all.js#appId=XXXXXXXXXXXX&xfbml=1">
    </script>

  <fb:registration
    fields="name,birthday,gender,location,email"
    redirect-uri="http://manuelmedina.com.mx/gracias/"
    width="530">
  </fb:registration>

HTML5

  <div
    class="fb-registration"
    data-fields="[{'name':'name'}, {'name':'email'}, {'name':'desired_content','description':'¿Qué tipo de artículos te gustaría ver en esta página?', 'type':'text'}]"
    data-redirect-uri="http://manuelmedina.com.mx/gracias/"
  </div>

I'm not sure of which furter information may be useful for you guys to help, but if someone tells me I'm willing to know.

share|improve this question

1 Answer

I see you have broken html code. Be sure that wordpress is not filtering and modifying your html. After you paste the code in the Wordpress editor (be sure you do it in HTML mode), change to visual mode and go back again to html. See what changed

share|improve this answer
By 'broken html code' you mean the <div without closing > right? Even that way, the code works perfectly in the sidebar, as you can see live on my homepage (www.manuelmedina.com.mx). – JoseluisVera Castillo Nov 10 '11 at 4:53
I just tried switching to visual mode and then back to html mode, and you're right, wordpress changes some code, but i took the codes right from facebook developers page, what can I do? – JoseluisVera Castillo Nov 10 '11 at 5:00
One way is create your own shortcode and put it in the page instead of putting HTML directly in the page. wpbeginner.com/wp-tutorials/how-to-add-a-shortcode-in-wordpress – Teofilo Israel Vizcaino Rodrig Nov 10 '11 at 20:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.