<?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: Add Print Button next to submit</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Add Print Button next to submit</description>
<language>en</language>
<pubDate>Sat, 06 Jun 2026 03:01:26 +0000</pubDate>

<item>
<title>spresser on "Add Print Button next to submit"</title>
<link>https://www.machform.com/forums/topic/add-print-button-next-to-submit#post-24585</link>
<pubDate>Thu, 17 Dec 2015 04:58:36 +0000</pubDate>
<dc:creator>spresser</dc:creator>
<guid isPermaLink="false">24585@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I would also like to add this. When I replaced the code it resulted in errors. Is there an update to this code?
&#60;/p&#62;</description>
</item>
<item>
<title>sanevoice on "Add Print Button next to submit"</title>
<link>https://www.machform.com/forums/topic/add-print-button-next-to-submit#post-22701</link>
<pubDate>Tue, 10 Feb 2015 23:45:53 +0000</pubDate>
<dc:creator>sanevoice</dc:creator>
<guid isPermaLink="false">22701@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi:  I want to add a print button as well and am using Machform 3.5, but there are only 2495 lines of code in the includes/view-functions file. Am I missing something here???  Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>wallahed on "Add Print Button next to submit"</title>
<link>https://www.machform.com/forums/topic/add-print-button-next-to-submit#post-18313</link>
<pubDate>Sun, 19 May 2013 02:21:12 +0000</pubDate>
<dc:creator>wallahed</dc:creator>
<guid isPermaLink="false">18313@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;It works just fine. BUT it would be better if the print option was on the form property tab for EACH form so that if the review before submit is checked, the print is shown as an option.
&#60;/p&#62;</description>
</item>
<item>
<title>rosbal2013 on "Add Print Button next to submit"</title>
<link>https://www.machform.com/forums/topic/add-print-button-next-to-submit#post-17725</link>
<pubDate>Wed, 20 Mar 2013 22:24:24 +0000</pubDate>
<dc:creator>rosbal2013</dc:creator>
<guid isPermaLink="false">17725@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thank you very much. It worked. I don't know about php but i want the print to look like an image and not text.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Add Print Button next to submit"</title>
<link>https://www.machform.com/forums/topic/add-print-button-next-to-submit#post-17723</link>
<pubDate>Wed, 20 Mar 2013 20:04:39 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">17723@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I think, it would be better to add the print button on review page, so the user can print the submitted entry before completely submit the form.&#60;br /&#62;
To do this, you need to turn on &#34;show review page&#34; on form properties.&#60;br /&#62;
Then, edit &#34;includes/view-functions.php&#34; file and go to around line 6002 ~ 6012, you will see these codes :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!empty($form_review_use_image)){
			$button_markup =&#38;lt;&#38;lt;&#38;lt;EOT
&#38;lt;input id=&#38;quot;review_submit&#38;quot; class=&#38;quot;submit_img_primary&#38;quot; type=&#38;quot;image&#38;quot; name=&#38;quot;review_submit&#38;quot; alt=&#38;quot;{$form_review_primary_text}&#38;quot; src=&#38;quot;{$form_review_primary_img}&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;review_back&#38;quot; class=&#38;quot;submit_img_secondary&#38;quot; type=&#38;quot;image&#38;quot; name=&#38;quot;review_back&#38;quot; alt=&#38;quot;{$form_review_secondary_text}&#38;quot; src=&#38;quot;{$form_review_secondary_img}&#38;quot; /&#38;gt;
EOT;
		}else{
			$button_markup =&#38;lt;&#38;lt;&#38;lt;EOT
&#38;lt;input id=&#38;quot;review_submit&#38;quot; class=&#38;quot;button_text btn_primary&#38;quot; type=&#38;quot;submit&#38;quot; name=&#38;quot;review_submit&#38;quot; value=&#38;quot;{$form_review_primary_text}&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;review_back&#38;quot; class=&#38;quot;button_text btn_secondary&#38;quot; type=&#38;quot;submit&#38;quot; name=&#38;quot;review_back&#38;quot; value=&#38;quot;{$form_review_secondary_text}&#38;quot; /&#38;gt;
EOT;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then you can change it to &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if(!empty($form_review_use_image)){
			$button_markup =&#38;lt;&#38;lt;&#38;lt;EOT
&#38;lt;input id=&#38;quot;review_submit&#38;quot; class=&#38;quot;submit_img_primary&#38;quot; type=&#38;quot;image&#38;quot; name=&#38;quot;review_submit&#38;quot; alt=&#38;quot;{$form_review_primary_text}&#38;quot; src=&#38;quot;{$form_review_primary_img}&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;review_back&#38;quot; class=&#38;quot;submit_img_secondary&#38;quot; type=&#38;quot;image&#38;quot; name=&#38;quot;review_back&#38;quot; alt=&#38;quot;{$form_review_secondary_text}&#38;quot; src=&#38;quot;{$form_review_secondary_img}&#38;quot; /&#38;gt;
&#38;lt;input class=&#38;quot;button_text btn_secondary&#38;quot; type=&#38;quot;button&#38;quot; name=&#38;quot;Print&#38;quot; value=&#38;quot;Print&#38;quot; onClick=&#38;quot;javascript:window.print();&#38;quot; /&#38;gt;
EOT;
		}else{
			$button_markup =&#38;lt;&#38;lt;&#38;lt;EOT
&#38;lt;input id=&#38;quot;review_submit&#38;quot; class=&#38;quot;button_text btn_primary&#38;quot; type=&#38;quot;submit&#38;quot; name=&#38;quot;review_submit&#38;quot; value=&#38;quot;{$form_review_primary_text}&#38;quot; /&#38;gt;
&#38;lt;input id=&#38;quot;review_back&#38;quot; class=&#38;quot;button_text btn_secondary&#38;quot; type=&#38;quot;submit&#38;quot; name=&#38;quot;review_back&#38;quot; value=&#38;quot;{$form_review_secondary_text}&#38;quot; /&#38;gt;
&#38;lt;input class=&#38;quot;button_text btn_secondary&#38;quot; type=&#38;quot;button&#38;quot; name=&#38;quot;Print&#38;quot; value=&#38;quot;Print&#38;quot; onClick=&#38;quot;javascript:window.print();&#38;quot; /&#38;gt;
EOT;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>rosbal2013 on "Add Print Button next to submit"</title>
<link>https://www.machform.com/forums/topic/add-print-button-next-to-submit#post-17721</link>
<pubDate>Wed, 20 Mar 2013 17:54:09 +0000</pubDate>
<dc:creator>rosbal2013</dc:creator>
<guid isPermaLink="false">17721@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Will be possible to add a print button, so that they can print before submitting the form to get a hardcopy of their submission.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
