<?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: Dynamically notify a WP user of form submission IF certain conditions are met</title>
		<link>https://legacy.forums.gravityhelp.com/topic/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met</link>
		<description>Gravity Support Forums Topic: Dynamically notify a WP user of form submission IF certain conditions are met</description>
		<language>en-US</language>
		<pubDate>Sun, 05 Apr 2026 18:26:49 +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/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met" rel="self" type="application/rss+xml" />

		<item>
			<title>44pixels on "Dynamically notify a WP user of form submission IF certain conditions are met"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met#post-36631</link>
			<pubDate>Thu, 29 Sep 2011 14:54:46 +0000</pubDate>
			<dc:creator>44pixels</dc:creator>
			<guid isPermaLink="false">36631@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for the reply Chris, that make a lot of sense. I'm definitely comfortable digging into Gravity &#38;amp; PHP in general so I figured i could &#34;make it work&#34; but it seems like the core processes - post creation via form, email notifications, custom fields etc were already handled by Gravity.&#60;/p&#62;
&#60;p&#62;Good to hear you are not daunted by this prospect! HAHA, thanks again for the reply and if any Gravity experts reading this are interest in working on this project, please send us a message. Thanks!&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met-1&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met-1&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Dynamically notify a WP user of form submission IF certain conditions are met"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met#post-36553</link>
			<pubDate>Thu, 29 Sep 2011 00:51:45 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">36553@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;You can certainly do it, but not without a little work.  Gravity Forms is not designed to do anything like this, but you could use the &#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_post_submission&#34; rel=&#34;nofollow&#34;&#62;gform_post_submission&#60;/a&#62; in 1.5.x (&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Gform_after_submission&#34; rel=&#34;nofollow&#34;&#62;gform_after_submission&#60;/a&#62; in 1.6 and later) hook to compare the custom fields with the other user's preferences, then send a notification to those users.&#60;/p&#62;
&#60;p&#62;You would need to know:&#60;/p&#62;
&#60;ul&#62;
&#60;li&#62;what the other user's preferences are&#60;/li&#62;
&#60;li&#62;their email addresses&#60;/li&#62;
&#60;li&#62;the custom fields in the recently submitted post&#60;/li&#62;
&#60;li&#62;Post ID&#60;/li&#62;
&#60;/ul&#62;
&#60;p&#62;Then compare the custom fields that were submitted with the stored preferences, and if you have a match, send a notification email with the link to the post.  The code will go in functions.php in your current theme, and you can hook it to a Gravity Forms function.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>44pixels on "Dynamically notify a WP user of form submission IF certain conditions are met"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/dynamically-notify-a-wp-user-of-form-submission-if-certain-conditions-are-met#post-36508</link>
			<pubDate>Wed, 28 Sep 2011 17:50:45 +0000</pubDate>
			<dc:creator>44pixels</dc:creator>
			<guid isPermaLink="false">36508@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;First off, we love Gravity Forms and use it for every single website we make. It is awesome! Now that I've gotten that out of the way...&#60;/p&#62;
&#60;p&#62;I've come across a pretty unique project proposal and I'm trying to figure out if Gravity will make these functionality possible. Here's what I'm trying to achieve:&#60;/p&#62;
&#60;p&#62;1. A registered user submits a form, creating a new post with with many custom fields for a product they are looking to sell (think classified ad style). By default, this post is &#34;private&#34; or hidden from all other users/visitors&#60;/p&#62;
&#60;p&#62;2. Other registered users have created a list of preferences when their account was created&#60;/p&#62;
&#60;p&#62;3. If the &#34;classified&#34; post mentioned in step 1 meets another user's preference criteria, notify these users that the post has been created and send them a link to view it&#60;/p&#62;
&#60;p&#62;4. Keep track of how many posts any given user has been given access to (i.e. &#34;User X has been sent notifications for 10 posts, and User Y can access 4 posts based on their preferences&#34;)&#60;/p&#62;
&#60;p&#62;The basic idea here is to allow users to post a &#34;classified add&#34; of sorts that is sent to other users ONLY if it meets that other user's preference requirements. At first glance I was thinking I have to custom code this application but I got to thinking I might be able to make something really sweet with Gravity?&#60;/p&#62;
&#60;p&#62;Thoughts? Any help is greatly appreciated, thank you for your time!
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
