<?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: Can Password Protected Form have a different header?</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Can Password Protected Form have a different header?</description>
<language>en</language>
<pubDate>Mon, 04 May 2026 01:28:10 +0000</pubDate>

<item>
<title>redityo on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6828</link>
<pubDate>Tue, 04 Aug 2009 20:21:24 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">6828@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hmmm .. It should have no problem with the changes, could you try to reset the form password and clear your browser cache. After that make sure your browser javascript and cookie is enabled.
&#60;/p&#62;</description>
</item>
<item>
<title>markhuss on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6818</link>
<pubDate>Tue, 04 Aug 2009 03:05:24 +0000</pubDate>
<dc:creator>markhuss</dc:creator>
<guid isPermaLink="false">6818@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;New Password Problem,&#60;/p&#62;
&#60;p&#62;I just did all the suggestions below and now the password page has no banner (YES!) &#60;/p&#62;
&#60;p&#62;We sign in and when we fill out the form and it &#34;submit&#34; it says Invalid, this form is password protected!&#34;&#60;/p&#62;
&#60;p&#62;Can you suggest?
&#60;/p&#62;</description>
</item>
<item>
<title>markhuss on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6809</link>
<pubDate>Mon, 03 Aug 2009 10:59:49 +0000</pubDate>
<dc:creator>markhuss</dc:creator>
<guid isPermaLink="false">6809@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;You're brilliant  - worked like a charm.&#60;/p&#62;
&#60;p&#62;Thank you. Thank you.
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6808</link>
<pubDate>Mon, 03 Aug 2009 09:39:35 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">6808@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;I see... that code will work on view form/standard embed code only. I think you're using advance embed code, then try to follow these steps :&#60;/p&#62;
&#60;p&#62;1. Go to line 2128  and you will see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$all_element_markup = &#38;#39;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put the code bellow that line &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$no_header = &#38;#39;style=&#38;quot;display:none !important&#38;quot;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;2. Go to line 2176 and you will see this code &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1&#38;gt;&#38;lt;a&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;change it to &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1 {$no_header}&#38;gt;&#38;lt;a&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>markhuss on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6806</link>
<pubDate>Mon, 03 Aug 2009 09:09:31 +0000</pubDate>
<dc:creator>markhuss</dc:creator>
<guid isPermaLink="false">6806@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thank you so much. I did what you said and it works for the form that is generated when the program gets to generate the address, but I have my form's address changed so it couldn't be accidentally found. &#60;/p&#62;
&#60;p&#62;I take the form number and put it in a php folder per Yuniar's instructions. So the page that is automatically generated&#60;/p&#62;
&#60;p&#62;&#34;my address/form/view.php?id=12&#34;  Is now&#60;/p&#62;
&#60;p&#62;'my address/form/clientname.php&#34;&#60;/p&#62;
&#60;p&#62;does that change what I do with the code in the view-functions?&#60;/p&#62;
&#60;p&#62;Thanks again&#60;/p&#62;
&#60;p&#62;Mark
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6802</link>
<pubDate>Mon, 03 Aug 2009 08:20:48 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">6802@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi Mark,&#60;/p&#62;
&#60;p&#62;Try to edit &#34;includes/view-functions.php&#34; file and go around line 1791, you will see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$all_element_markup = &#38;#39;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put this code exactly bellow that line &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$no_header = &#38;#39;style=&#38;quot;display:none !important&#38;quot;&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;then go to line 1840 and you will see this :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1&#38;gt;&#38;lt;a&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;change to &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1 {$no_header}&#38;gt;&#38;lt;a&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>markhuss on "Can Password Protected Form have a different header?"</title>
<link>https://www.machform.com/forums/topic/can-password-protected-form-have-a-different-header#post-6768</link>
<pubDate>Fri, 31 Jul 2009 21:45:24 +0000</pubDate>
<dc:creator>markhuss</dc:creator>
<guid isPermaLink="false">6768@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Hi there&#60;/p&#62;
&#60;p&#62;I have a password protected form. It has a graphic header specific to my client. When the client goes to log in to the page, the proprietary banner is also on the top of the page where he is forced to enter his password. He doesn't want anyone to see the header. Can I simply make the password page plain (white background with no header)?&#60;/p&#62;
&#60;p&#62;Thanks much&#60;br /&#62;
Mark
&#60;/p&#62;</description>
</item>

</channel>
</rss>
