<?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: Tooltip Confirmation Message</title>
		<link>https://legacy.forums.gravityhelp.com/topic/tooltip-confirmation-message</link>
		<description>Gravity Support Forums Topic: Tooltip Confirmation Message</description>
		<language>en-US</language>
		<pubDate>Sat, 04 Apr 2026 11:03:24 +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/tooltip-confirmation-message" rel="self" type="application/rss+xml" />

		<item>
			<title>Joe Johnson on "Tooltip Confirmation Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tooltip-confirmation-message#post-58397</link>
			<pubDate>Wed, 09 May 2012 14:37:47 +0000</pubDate>
			<dc:creator>Joe Johnson</dc:creator>
			<guid isPermaLink="false">58397@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I will try and let you know.  Thank you.  Joe Johnson
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Rob Harrell on "Tooltip Confirmation Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tooltip-confirmation-message#post-58388</link>
			<pubDate>Wed, 09 May 2012 14:28:23 +0000</pubDate>
			<dc:creator>Rob Harrell</dc:creator>
			<guid isPermaLink="false">58388@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Try activating AJAX on your form call. It doesn't look like it's using AJAX.&#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://www.gravityhelp.com/documentation/page/Embedding_A_Form&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/documentation/page/Embedding_A_Form&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Joe Johnson on "Tooltip Confirmation Message"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/tooltip-confirmation-message#post-58379</link>
			<pubDate>Wed, 09 May 2012 14:07:00 +0000</pubDate>
			<dc:creator>Joe Johnson</dc:creator>
			<guid isPermaLink="false">58379@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I am setting up a form inside the footer widget using a tooltip display. I am wanting to use the shortcode for my form (Gravity Forms) instead of coding a form. &#60;/p&#62;
&#60;p&#62;The form does show and sends but it does not display the &#34;Confirmation Message&#34;. Upon Submitting the tooltip closes and when you mouse over presents the Confirmation Message, instead of the form again. I feel this is someway Ajax related but do not know how to precede.&#60;/p&#62;
&#60;p&#62;Parameters&#60;br /&#62;
&#38;gt; Footer Widget&#60;br /&#62;
&#38;gt; Tooltip to display &#34;Form&#34; Shortcode&#60;br /&#62;
&#38;gt; Sample Page of current setup: &#60;a href=&#34;http://www.nonprofit-software.co/education/&#34; rel=&#34;nofollow&#34;&#62;http://www.nonprofit-software.co/education/&#60;/a&#62;&#60;br /&#62;
-- Cell Phone Footer Image&#60;br /&#62;
&#38;gt; Form Tool: Gravity Forms&#60;br /&#62;
&#38;gt; Theme: Dejavu by &#60;a href=&#34;http://www.mysitemyway.com&#34; rel=&#34;nofollow&#34;&#62;http://www.mysitemyway.com&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Code:&#60;br /&#62;
[tooltip custom_id=&#34;image1&#34; width=&#34;450&#34; position=&#34;top&#34; close=&#34;true&#34; trigger='&#38;lt;img alt=&#34;&#34; src=&#34;https://s3.amazonaws.com/nonprofit-solutions/icon-call-me-now.jpg&#34; class=&#34;framed&#34;/&#38;gt;']&#60;br /&#62;
[gravityform id=&#34;1&#34; name=&#34;Call Me Now&#34; ]&#60;br /&#62;
[/tooltip]&#60;/p&#62;
&#60;p&#62;Below are the code changes I made to get it to work in part.&#60;/p&#62;
&#60;p&#62;I updated my theme &#34; /lib/shortcodes/13-tooltips.php&#34; :&#60;br /&#62;
Modified this,&#60;br /&#62;
echo '&#38;lt;div id=&#34;' . $tip_load . '&#34; class=&#34;tooltip_load&#34;' . ( !empty( $textcolor ) ? ' style=&#34;color:' . $textcolor . ';&#34;' : '' ) . '&#38;gt;' . $content . '&#38;lt;/div&#38;gt;';&#60;/p&#62;
&#60;p&#62;Changed it to this:&#60;br /&#62;
echo '&#38;lt;div id=&#34;' . $tip_load . '&#34; class=&#34;tooltip_load&#34;' . ( !empty( $textcolor ) ? ' style=&#34;color:' . $textcolor . ';&#34;' : '' ) . '&#38;gt;' . do_shortcode($content) . '&#38;lt;/div&#38;gt;';&#60;/p&#62;
&#60;p&#62;Modified this:&#60;br /&#62;
echo '&#38;lt;div id = &#34;custom_tooltip_content'.$custom_id.'&#34; class = &#34;tooltip_load&#34;&#38;gt;'.$content.'&#38;lt;/div&#38;gt;';&#60;/p&#62;
&#60;p&#62;Changed it to this:&#60;br /&#62;
echo '&#38;lt;div id = &#34;custom_tooltip_content'.$custom_id.'&#34; class = &#34;tooltip_load&#34;&#38;gt;'.do_shortcode($content).'&#38;lt;/div&#38;gt;'; &#60;/p&#62;
&#60;p&#62;Thank you&#60;br /&#62;
Joe Johnson&#60;br /&#62;
&#60;a href=&#34;mailto:jjohnson@n-ppi.com&#34;&#62;jjohnson@n-ppi.com&#60;/a&#62;
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
