<?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: Can&#039;t see entries and empty notifiactions</title>
		<link>https://legacy.forums.gravityhelp.com/topic/cant-see-entries-and-empty-notifiactions</link>
		<description>Gravity Support Forums Topic: Can&#039;t see entries and empty notifiactions</description>
		<language>en-US</language>
		<pubDate>Sun, 05 Apr 2026 11:37:42 +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/cant-see-entries-and-empty-notifiactions" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Can&#039;t see entries and empty notifiactions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-see-entries-and-empty-notifiactions#post-76496</link>
			<pubDate>Thu, 20 Sep 2012 08:18:10 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">76496@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Are you saying that when you deactivate the Pregnancy Predictor plugin, your notifications and entries work as expected?&#60;/p&#62;
&#60;p&#62;I looked at the plugin code and it looks like they are using a non-standard way of including the shortcode.  See line 220 of the plugin code you posted:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
function prpredct($content)
{
	if(!strstr($content,&#38;quot;[pregnancy-predictor]&#38;quot;)) return $content;

	$ovcalc=prpredct_generate_html();

	$content=str_replace(&#38;quot;[pregnancy-predictor]&#38;quot;,$ovcalc,$content);
	return $content;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That's not normally how a shortcode is handled.  Normally, you would expect to see something like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
add_shortcode(&#38;#39;gravityforms&#38;#39;, array(&#38;#39;RGForms&#38;#39;, &#38;#39;parse_shortcode&#38;#39;));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and then the &#34;parse_shortcode&#34; function:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
    //Parses the [gravityform shortcode and returns the front end form UI
    public static function parse_shortcode($attributes, $content = null){
        extract(shortcode_atts(array(
             &#38;#39;title&#38;#39; =&#38;gt; true,
             &#38;#39;description&#38;#39; =&#38;gt; true,
             &#38;#39;id&#38;#39; =&#38;gt; 0,
             &#38;#39;name&#38;#39; =&#38;gt; &#38;#39;&#38;#39;,
             &#38;#39;field_values&#38;#39; =&#38;gt; &#38;quot;&#38;quot;,
             &#38;#39;ajax&#38;#39; =&#38;gt; false,
             &#38;#39;tabindex&#38;#39; =&#38;gt; 1,
             &#38;#39;action&#38;#39; =&#38;gt; &#38;#39;form&#38;#39;
          ), $attributes));&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;The function can be whatever you like.  This is the function from Gravity Forms.&#60;/p&#62;
&#60;p&#62;However, your plugin is not adding the shortcode in that way. It is processing all the content.  I suspect that is related to the problem.  However, I suggest you contact the author of that plugin and get their advice on resolving the conflict.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>GJerome on "Can&#039;t see entries and empty notifiactions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-see-entries-and-empty-notifiactions#post-76468</link>
			<pubDate>Thu, 20 Sep 2012 05:08:58 +0000</pubDate>
			<dc:creator>GJerome</dc:creator>
			<guid isPermaLink="false">76468@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks Chris for your reply.&#60;/p&#62;
&#60;p&#62;Yesterday, before writing to you, I tested while desactivating all the plugins and I did not receive any confirmation email to the newsletter inscription. I thought the problem did not come from the plugin but this morning while I was trying with a new email address, I got a new entry in my administration and I've received the confirmation email.&#60;/p&#62;
&#60;p&#62;However, I'm a bit annoyed as the plugin that is creating the problem is totally essential to me. Do you think if you look into the code, you could tell me what is creating this bug in gravityforms ? As I do not know how to code, I take this opportunity to give you the pastebin link &#60;a href=&#34;http://pastebin.com/ehpSH0uf&#34; rel=&#34;nofollow&#34;&#62;http://pastebin.com/ehpSH0uf&#60;/a&#62; , I have copy paste my php file code.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Can&#039;t see entries and empty notifiactions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-see-entries-and-empty-notifiactions#post-76401</link>
			<pubDate>Wed, 19 Sep 2012 19:17:32 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">76401@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I think you mean you are using version 1.6.7 of the Gravity Forms plugin.&#60;/p&#62;
&#60;p&#62;The other person had a problem with a plugin conflict.  Have you already tested for theme and plugin conflicts by following these instructions &#60;a href=&#34;http://rkt.gs/testing&#34; rel=&#34;nofollow&#34;&#62;http://rkt.gs/testing&#60;/a&#62; ?&#60;/p&#62;
&#60;p&#62;If you are using a caching plugin, please be sure to turn that off for testing.  Caching plugins can affect the form submissions, entries and notifications.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>GJerome on "Can&#039;t see entries and empty notifiactions"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/cant-see-entries-and-empty-notifiactions#post-76396</link>
			<pubDate>Wed, 19 Sep 2012 18:50:34 +0000</pubDate>
			<dc:creator>GJerome</dc:creator>
			<guid isPermaLink="false">76396@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hello,&#60;/p&#62;
&#60;p&#62;I've exactly the same problem as this guy : &#60;a href=&#34;http://www.gravityhelp.com/forums/topic/form-entries-not-saved#post-74405&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/form-entries-not-saved#post-74405&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;I upgraded the new version of GF and now when people subscribes to my newsletter &#60;a href=&#34;http://www.bebeconseils.fr/&#34; rel=&#34;nofollow&#34;&#62;http://www.bebeconseils.fr/&#60;/a&#62;  i can't see the entries in the admin part, i receive an empty notification and the subscriber doesn't receive the optin email.&#60;/p&#62;
&#60;p&#62;I have uninstall and reinstall GF 1.7, i have created a new form and a new list in mailchimp nothing change. I have tried other form where mailchimp is not setup and the problem is the same. I can't see the entries but the number is increasing and i receive an empty notification.&#60;/p&#62;
&#60;p&#62;Thanks for your help
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
