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?