PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Replace buddypress registration with gravity form code question

  1. I am trying to setup buddypress to use a gravity form for register. I tried to replace the register.php in the child theme to a block of code mentioned in a similar forum post

    I added this and it is not working

    <?php get_header(); ?>
    <div id="content">
    	<h1>Register</h1>
    	<div class="postarea">
    	<?php gravity_form(10, false, true, false, null, false); ?>
    	</div>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>'

    Can you tell me what I can do for the default child theme to call my form?

    Posted 12 years ago on Friday November 11, 2011 | Permalink
  2. Can you tell us what happens when you try it? Please post a link to your site. Thank you.

    Posted 12 years ago on Saturday November 12, 2011 | Permalink
  3. Add this to your functions.php file

    http://pastie.org/2767118

    Also I needed to add this to my functions.php file:

    gravity_form_enqueue_scripts(10, true);

    Posted 12 years ago on Thursday December 29, 2011 | Permalink

This topic has been resolved and has been closed to new replies.