<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>MachForm Community Forums Topic: Print Reminder Before Submit</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Print Reminder Before Submit</description>
<language>en</language>
<pubDate>Sun, 03 May 2026 23:07:38 +0000</pubDate>

<item>
<title>jamesmccarthy on "Print Reminder Before Submit"</title>
<link>https://www.machform.com/forums/topic/print-reminder-before-submit#post-11861</link>
<pubDate>Thu, 21 Apr 2011 19:32:01 +0000</pubDate>
<dc:creator>jamesmccarthy</dc:creator>
<guid isPermaLink="false">11861@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Email with file at tached is on its way.&#60;/p&#62;
&#60;p&#62;Jim
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Print Reminder Before Submit"</title>
<link>https://www.machform.com/forums/topic/print-reminder-before-submit#post-11860</link>
<pubDate>Thu, 21 Apr 2011 18:54:38 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">11860@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi Jim,&#60;/p&#62;
&#60;p&#62;Can you send us your modified view-functions.php file please?&#60;br /&#62;
It seems there is some syntax error there.&#60;/p&#62;
&#60;p&#62;We'll check it.&#60;br /&#62;
You can send via email: customer.service [at] appnitro.com
&#60;/p&#62;</description>
</item>
<item>
<title>jamesmccarthy on "Print Reminder Before Submit"</title>
<link>https://www.machform.com/forums/topic/print-reminder-before-submit#post-11858</link>
<pubDate>Thu, 21 Apr 2011 12:55:52 +0000</pubDate>
<dc:creator>jamesmccarthy</dc:creator>
<guid isPermaLink="false">11858@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;redityo,&#60;/p&#62;
&#60;p&#62;OK I have fooled around with it, and get no error message.  But, I also do not get my warning message.&#60;/p&#62;
&#60;p&#62;I went back, and only entered your code once for each of the two snippets.&#60;/p&#62;
&#60;p&#62;Take that back.  I entered snippet for red and got&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /hermes/bosweb25a/b101/ipg.tucsonsquaredancefes/machform/includes/view-functions.php on line 20&#60;/p&#62;
&#60;p&#62;Any ideas?&#60;/p&#62;
&#60;p&#62;Jim
&#60;/p&#62;</description>
</item>
<item>
<title>jamesmccarthy on "Print Reminder Before Submit"</title>
<link>https://www.machform.com/forums/topic/print-reminder-before-submit#post-11855</link>
<pubDate>Thu, 21 Apr 2011 09:07:16 +0000</pubDate>
<dc:creator>jamesmccarthy</dc:creator>
<guid isPermaLink="false">11855@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;redityo,&#60;/p&#62;
&#60;p&#62;I implemented the changes you recommended, but keep getting this error&#60;/p&#62;
&#60;p&#62;Parse error: syntax error, unexpected T_STRING in /hermes/bosweb25a/b101/ipg.tucsonsquaredancefes/machform/includes/view-functions.php on line 1824&#60;/p&#62;
&#60;p&#62;When I searched for &#34;$form_markup = &#38;lt;&#38;lt;&#38;lt;EOT&#34;  I found four instances of this code and placed your changes before this on each occasion.&#60;/p&#62;
&#60;p&#62;I will keep playing with this while wating for your response.&#60;/p&#62;
&#60;p&#62;Jim
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Print Reminder Before Submit"</title>
<link>https://www.machform.com/forums/topic/print-reminder-before-submit#post-11853</link>
<pubDate>Wed, 20 Apr 2011 11:39:23 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">11853@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hello Jim,&#60;/p&#62;
&#60;p&#62;You can customize &#34;view-functions.php&#34; file to add confirmation message in review page. To do this, edit the file and go to around line 2358 for this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$form_markup = &#38;lt;&#38;lt;&#38;lt;EOT&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and put these code above that line &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$js_confirm = &#38;#39; onclick=&#38;quot;return confirm(\&#38;#39;Print this page before continue. Continue anyway ?\&#38;#39;);&#38;quot; &#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;after that, go to around line 2389 for this code&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;input id=&#38;quot;review_submit&#38;quot; class=&#38;quot;button_text&#38;quot; type=&#38;quot;submit&#38;quot; name=&#38;quot;review_submit&#38;quot; value=&#38;quot;{$lang[&#38;#39;submit_button&#38;#39;]}&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;and change it to&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;input id=&#38;quot;review_submit&#38;quot; {$js_confirm} class=&#38;quot;button_text&#38;quot; type=&#38;quot;submit&#38;quot; name=&#38;quot;review_submit&#38;quot; value=&#38;quot;{$lang[&#38;#39;submit_button&#38;#39;]}&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;about the message in red? It will be a static text in review page ? If so, you can change this code from above code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$js_confirm = &#38;#39; onclick=&#38;quot;return confirm(\&#38;#39;Print this page before continue. Continue anyway ?\&#38;#39;);&#38;quot; &#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;into &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$js_confirm = &#38;#39; onclick=&#38;quot;return confirm(\&#38;#39;Print this page before continue. Continue anyway ?\&#38;#39;);&#38;quot; &#38;#39;;
		$lang[&#38;#39;review_message&#38;#39;] .= &#38;#39; &#38;lt;br /&#38;gt; &#38;lt;li id=&#38;quot;error_message&#38;quot;&#38;gt;&#38;lt;h3 id=&#38;quot;error_message_title&#38;quot;&#38;gt;Print this page&#38;lt;/h3&#38;gt;&#38;lt;/li&#38;gt;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>jamesmccarthy on "Print Reminder Before Submit"</title>
<link>https://www.machform.com/forums/topic/print-reminder-before-submit#post-11850</link>
<pubDate>Tue, 19 Apr 2011 14:30:17 +0000</pubDate>
<dc:creator>jamesmccarthy</dc:creator>
<guid isPermaLink="false">11850@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;My users would like a message (in red) to appear after the Continue button is clicked, and before the Submit button is clicked.  This would be a reminder to print out the form at that time.  &#60;/p&#62;
&#60;p&#62;Jim
&#60;/p&#62;</description>
</item>

</channel>
</rss>
