<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums Topic: Replacing the default registration form</title>
		<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form</link>
		<description>Gravity Support Forums Topic: Replacing the default registration form</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 15:24:09 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/replacing-the-default-registration-form" rel="self" type="application/rss+xml" />

		<item>
			<title>hardseatsleeper on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-26143</link>
			<pubDate>Mon, 23 May 2011 12:42:02 +0000</pubDate>
			<dc:creator>hardseatsleeper</dc:creator>
			<guid isPermaLink="false">26143@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Here is the htaccess I used:&#60;/p&#62;
&#60;p&#62;RewriteCond %{QUERY_STRING} ^action=register$&#60;br /&#62;
RewriteRule ^wp-login\.php$ &#60;a href=&#34;http://www.mysite.com/mypage?&#34; rel=&#34;nofollow&#34;&#62;http://www.mysite.com/mypage?&#60;/a&#62; [R=302,L]
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Hiranthi on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24564</link>
			<pubDate>Sat, 30 Apr 2011 03:09:26 +0000</pubDate>
			<dc:creator>Hiranthi</dc:creator>
			<guid isPermaLink="false">24564@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You could also &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/does-user-registration-need-allow-new-registrations-to-be-enabled&#34; rel=&#34;nofollow&#34;&#62;use the Redirection plugin&#60;/a&#62; for this (or add a line to your .htaccess for it).
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JNewton on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24532</link>
			<pubDate>Fri, 29 Apr 2011 14:19:22 +0000</pubDate>
			<dc:creator>JNewton</dc:creator>
			<guid isPermaLink="false">24532@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK, just tried the following code changing 'Your Title Here' to 'Registration':&#60;/p&#62;
&#60;p&#62;add_action( 'register' , 'register_replacement' );&#60;br /&#62;
function register_replacement( $link ){&#60;br /&#62;
	if ( ! is_user_logged_in() ) {&#60;br /&#62;
		if ( get_option('users_can_register') )&#60;br /&#62;
			$link = $before . '&#60;a href=&#34;' . site_url('wp-login.php?action=register', 'login') . '&#34; rel=&#34;nofollow&#34;&#62;' . __('Register') . '&#60;/a&#62;' . $after;&#60;br /&#62;
		else&#60;br /&#62;
			$link = '';&#60;br /&#62;
	} else {&#60;br /&#62;
		$link = $before . '&#60;a href=&#34;' . admin_url() . 'edit.php&#34; rel=&#34;nofollow&#34;&#62;' . __('Registration') . '&#60;/a&#62;' . $after;&#60;br /&#62;
	}&#60;br /&#62;
	return $link;&#60;br /&#62;
}&#60;/p&#62;
&#60;p&#62;Nothing happens.  Apparently I'm missing something.  I named both the form and the page 'Registration'.  Should I change the name of my form from 'Registration&#34; to 'Register'?  &#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
John
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JNewton on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24530</link>
			<pubDate>Fri, 29 Apr 2011 14:02:25 +0000</pubDate>
			<dc:creator>JNewton</dc:creator>
			<guid isPermaLink="false">24530@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Carl,&#60;/p&#62;
&#60;p&#62;Yeah, I sort of got the idea. I'm pretty much a noob at the programming aspect, but I'll give it a try.  &#60;/p&#62;
&#60;p&#62;I take it that presently we can NOT create a form for editing existing data in the wordpress user file.&#60;/p&#62;
&#60;p&#62;Thanks for the info, also creating an excellent forms generation tool.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deltajo on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24524</link>
			<pubDate>Fri, 29 Apr 2011 13:17:49 +0000</pubDate>
			<dc:creator>deltajo</dc:creator>
			<guid isPermaLink="false">24524@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;yyyeah.  I'm not sure how much learning and studying I'm supposed to do before I'm capable of using this information, and I certainly do appreciate your help, but what you said just went right over my head.  I've spend all this time trying to work with what you wrote here and I'm lost. &#60;/p&#62;
&#60;p&#62;I do see a functions.php file in my setup.  I saw the code you referred me to. I have a Gravity User Registration form and page set up. &#60;/p&#62;
&#60;p&#62;I'm using the Genesis theme package with a child theme for my live web site, but just to ensure I was working on this with something basic, I used a native WP installation which uses the stock &#34;Twenty Ten&#34; theme.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24506</link>
			<pubDate>Fri, 29 Apr 2011 12:12:26 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">24506@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The link WordPress uses for registration an be manipulated via a WordPress hook.  This is WordPress functionality so you need to change how WordPress works.&#60;/p&#62;
&#60;p&#62;Here is a WordPress.org forum discussion about how to do this:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://wordpress.org/support/topic/wp_register-how-do-i-change-the-text-link&#34; rel=&#34;nofollow&#34;&#62;http://wordpress.org/support/topic/wp_register-how-do-i-change-the-text-link&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;The very last post in that thread has a code sample that should do the trick.  You would have to modify it and change the link used for the Register link to the page you have embedded your Gravity Forms registration form.&#60;/p&#62;
&#60;p&#62;You would place this code in your themes functions.php file.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deltajo on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24505</link>
			<pubDate>Fri, 29 Apr 2011 12:06:04 +0000</pubDate>
			<dc:creator>deltajo</dc:creator>
			<guid isPermaLink="false">24505@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Same here, John. Not just the Registration link in your sidebar widget, but at COMMENTS too.  The Gravity instructions help us along like we are the dummies we actually are (OK I'll speak for myself), but at this point, it's like we suddenly need to know a secret handshake or something!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>JNewton on "Replacing the default registration form"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/replacing-the-default-registration-form#post-24471</link>
			<pubDate>Thu, 28 Apr 2011 19:51:33 +0000</pubDate>
			<dc:creator>JNewton</dc:creator>
			<guid isPermaLink="false">24471@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm pretty new to GF.  I'm using CF with the Catalyst Theme. I've created a couple of forms for our members to submit images for our meetings.  Seems pretty straight forward.  THe forms that are generated are really nice.  &#60;/p&#62;
&#60;p&#62;Now that the new user registration plug-in is available I figured that I could replace the default WP registration with a form that captures more information.  I've download the plug-in, got it activated.  I created the form, Registration, then using the user registration option mapped the registration form to the user data.  I've created a page and used the forms option to add the form.  This is where I seem to get lost.&#60;/p&#62;
&#60;p&#62;At this point is WP suppose to re-map the registration to the new page?  If not, how do I get the new registration form to display when someone clicks on the register link in the meta widget?&#60;/p&#62;
&#60;p&#62;Thanks,&#60;br /&#62;
John
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
