<?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: Automatically subscribing to comments</title>
		<link>https://legacy.forums.gravityhelp.com/topic/automatically-subscribing-to-comments</link>
		<description>Gravity Support Forums Topic: Automatically subscribing to comments</description>
		<language>en-US</language>
		<pubDate>Mon, 20 Apr 2026 07:51:34 +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/automatically-subscribing-to-comments" rel="self" type="application/rss+xml" />

		<item>
			<title>David Smith on "Automatically subscribing to comments"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automatically-subscribing-to-comments#post-21212</link>
			<pubDate>Wed, 23 Mar 2011 18:20:41 +0000</pubDate>
			<dc:creator>David Smith</dc:creator>
			<guid isPermaLink="false">21212@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Yep, this is possible.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rnfsolutions on "Automatically subscribing to comments"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automatically-subscribing-to-comments#post-21150</link>
			<pubDate>Wed, 23 Mar 2011 06:32:35 +0000</pubDate>
			<dc:creator>rnfsolutions</dc:creator>
			<guid isPermaLink="false">21150@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;OK great. But I think you're saying that in principle it could be done, right?&#60;/p&#62;
&#60;p&#62;Cheers&#60;/p&#62;
&#60;p&#62;Duncan
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Automatically subscribing to comments"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automatically-subscribing-to-comments#post-21036</link>
			<pubDate>Tue, 22 Mar 2011 11:46:16 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">21036@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You wouldn't implement this the same way, you would have to implement it using hooks/filters and some custom PHP you would add to your themes functions.php file to customize how Gravity Forms works.&#60;/p&#62;
&#60;p&#62;You would use the gform_post_submission hook.  Here is a post that discusses it's use:&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/sms-api-gateway-need-help-to-get-gform-to-integrate#post-18087&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/sms-api-gateway-need-help-to-get-gform-to-integrate#post-18087&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You would have to write the custom code or have a developer write the custom code to integrate with this 3rd party plugin.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>rnfsolutions on "Automatically subscribing to comments"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/automatically-subscribing-to-comments#post-21017</link>
			<pubDate>Tue, 22 Mar 2011 05:17:47 +0000</pubDate>
			<dc:creator>rnfsolutions</dc:creator>
			<guid isPermaLink="false">21017@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;So I'm using a Gravity Form (collecting email address etc) and I want the submitter to automatically receive notifications of any subsequent comments left on their post.&#60;/p&#62;
&#60;p&#62;I'm coming at this from originally using TDO Mini Forms in conjunction with &#60;a href=&#34;http://wordpress.org/extend/plugins/subscribe-to-comments/&#34; rel=&#34;nofollow&#34;&#62;Subscribe to Comments&#60;/a&#62; plugin.&#60;/p&#62;
&#60;p&#62;I basically hacked the TDO form which gave me access to the php of the whole form where I simply pasted the following code into the form. This code uses the functionality of Subscribe to Comments but automatically adds the submitters email address rather than them having to do it themselves:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;fieldset&#38;gt;
Vous serez automatiquement informé par e-mail des commentaires de suivi à votre demande. Vous pourrez vous désabonner après que le message est publié.&#38;lt;?php if(tdomf_widget_notifyme_show_email_input(2)) { ?&#38;gt;
			&#38;lt;?php $sc_email = $subscribe_to_comments_email;
			if(!isset($subscribe_to_comments_email)) {
				if(isset($_COOKIE[&#38;#39;comment_author_email_&#38;#39;])) {
					$sc_email = $_COOKIE[&#38;#39;comment_author_email_&#38;#39;];
				} else if(isset($_COOKIE[&#38;#39;tdomf_subscribe_to_comments_widget_email&#38;#39;])) {
					$sc_email = $_COOKIE[&#38;#39;tdomf_subscribe_to_comments_widget_email&#38;#39;];
			 } } ?&#38;gt;
			&#38;lt;br/&#38;gt;&#38;lt;label for=&#38;#39;subscribe_to_comments_email&#38;#39; class=&#38;#39;required&#38;#39;&#38;gt;Courrier électronique pour la souscription commentaire (requis): &#38;lt;input type=&#38;quot;text&#38;quot; value=&#38;quot;&#38;lt;?php echo htmlentities($sc_email,ENT_QUOTES) ?&#38;gt;&#38;quot; name=&#38;quot;subscribe_to_comments_email&#38;quot; id=&#38;quot;subscribe_to_comments_email&#38;quot; size=&#38;quot;40&#38;quot; /&#38;gt;&#38;lt;/label&#38;gt;
		&#38;lt;?php } ?&#38;gt;
	&#38;lt;/fieldset&#38;gt;

	&#38;lt;!-- notifyme start --&#38;gt;
	&#38;lt;fieldset&#38;gt;
	&#38;lt;label for=&#38;#39;notifyme&#38;#39;&#38;gt;&#38;lt;input type=&#38;#39;checkbox&#38;#39; name=&#38;#39;notifyme&#38;#39; id=&#38;#39;notifyme&#38;#39; checked=&#38;#39;yes&#38;#39;  style=&#38;quot;display:none;&#38;quot; /&#38;gt;&#38;lt;/label&#38;gt;
			&#38;lt;/fieldset&#38;gt;
	&#38;lt;!-- notifyme end --&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;So my question really is can I either:&#60;/p&#62;
&#60;p&#62;1) get access to the underlying php Gravity Form code in order to insert similar code above - and probably not just the php shortcode, but the underlying code for the whole form&#60;/p&#62;
&#60;p&#62;OR&#60;/p&#62;
&#60;p&#62;2) Is there a Gravity Form PHP widget that I can drag/drop onto the form to insert similar code that way instead?&#60;/p&#62;
&#60;p&#62;3) Is there a Gravity Form widget that integrates with a similar comment subscribing widget?&#60;/p&#62;
&#60;p&#62;Thanks&#60;/p&#62;
&#60;p&#62;Duncan
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
