<?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: Re-order name fields</title>
<link>https://www.machform.com/forums/</link>
<description>MachForm Community Forums Topic: Re-order name fields</description>
<language>en</language>
<pubDate>Sun, 03 May 2026 23:27:20 +0000</pubDate>

<item>
<title>redityo on "Re-order name fields"</title>
<link>https://www.machform.com/forums/topic/re-order-name-fields#post-24258</link>
<pubDate>Mon, 26 Oct 2015 08:02:33 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">24258@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;The field re-orders only can be applied on published forms indeed.&#60;br /&#62;
And to change name field width, you need to edit include/view-functions.php file. Go to line 2260 and you will see these codes :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$element_markup = &#38;lt;&#38;lt;&#38;lt;EOT
		&#38;lt;li id=&#38;quot;li_{$element-&#38;gt;id}&#38;quot; {$li_style} {$li_class}&#38;gt;
		&#38;lt;span class=&#38;quot;description&#38;quot;&#38;gt;{$element-&#38;gt;title} {$span_required}&#38;lt;/span&#38;gt;
		&#38;lt;span class=&#38;quot;simple_name_1&#38;quot;&#38;gt;
			&#38;lt;input id=&#38;quot;element_{$element-&#38;gt;id}_1&#38;quot; name=&#38;quot;element_{$element-&#38;gt;id}_1&#38;quot; {$attr_readonly} type=&#38;quot;text&#38;quot; class=&#38;quot;element text&#38;quot; maxlength=&#38;quot;255&#38;quot; size=&#38;quot;8&#38;quot; value=&#38;quot;{$default_value_1}&#38;quot; /&#38;gt;
			&#38;lt;label for=&#38;quot;element_{$element-&#38;gt;id}_1&#38;quot;&#38;gt;{$mf_lang[&#38;#39;name_first&#38;#39;]}&#38;lt;/label&#38;gt;
		&#38;lt;/span&#38;gt;
		&#38;lt;span class=&#38;quot;simple_name_2&#38;quot;&#38;gt;
			&#38;lt;input id=&#38;quot;element_{$element-&#38;gt;id}_2&#38;quot; name=&#38;quot;element_{$element-&#38;gt;id}_2&#38;quot; {$attr_readonly} type=&#38;quot;text&#38;quot; class=&#38;quot;element text&#38;quot; maxlength=&#38;quot;255&#38;quot; size=&#38;quot;14&#38;quot; value=&#38;quot;{$default_value_2}&#38;quot; /&#38;gt;
			&#38;lt;label for=&#38;quot;element_{$element-&#38;gt;id}_2&#38;quot;&#38;gt;{$mf_lang[&#38;#39;name_last&#38;#39;]}&#38;lt;/label&#38;gt;
		&#38;lt;/span&#38;gt;{$guidelines} {$error_message}
		&#38;lt;/li&#38;gt;
EOT;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then you can change the &#34;size&#34; value on those fields.
&#60;/p&#62;</description>
</item>
<item>
<title>arimage on "Re-order name fields"</title>
<link>https://www.machform.com/forums/topic/re-order-name-fields#post-24257</link>
<pubDate>Sun, 25 Oct 2015 15:34:49 +0000</pubDate>
<dc:creator>arimage</dc:creator>
<guid isPermaLink="false">24257@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Thank you. This re-orders the field on the published form (but not on the edit form panel)&#60;br /&#62;
Can you tell me where to change the name field widths please? I found lines around line 362 in view.css which shows first/middle 23% and last 30% but changing here seems to make no difference.&#60;/p&#62;
&#60;p&#62;Thanks
&#60;/p&#62;</description>
</item>
<item>
<title>yuniar on "Re-order name fields"</title>
<link>https://www.machform.com/forums/topic/re-order-name-fields#post-24254</link>
<pubDate>Sun, 25 Oct 2015 09:23:12 +0000</pubDate>
<dc:creator>yuniar</dc:creator>
<guid isPermaLink="false">24254@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;The easiest way, you can edit &#34;includes/language.php&#34; file, search around line 208 for this code:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;$languages[&#38;#39;name_first&#38;#39;]			= &#38;#39;First&#38;#39;;
$languages[&#38;#39;name_middle&#38;#39;]			= &#38;#39;Middle&#38;#39;;
$languages[&#38;#39;name_last&#38;#39;]				= &#38;#39;Last&#38;#39;;
$languages[&#38;#39;name_title&#38;#39;]			= &#38;#39;Title&#38;#39;;
$languages[&#38;#39;name_suffix&#38;#39;]			= &#38;#39;Suffix&#38;#39;;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;change it to become:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;$languages[&#38;#39;name_first&#38;#39;]			= &#38;#39;Last&#38;#39;;
$languages[&#38;#39;name_middle&#38;#39;]			= &#38;#39;Middle&#38;#39;;
$languages[&#38;#39;name_last&#38;#39;]				= &#38;#39;First&#38;#39;;
$languages[&#38;#39;name_title&#38;#39;]			= &#38;#39;Title&#38;#39;;
$languages[&#38;#39;name_suffix&#38;#39;]			= &#38;#39;Suffix&#38;#39;;&#60;/code&#62;&#60;/pre&#62;</description>
</item>
<item>
<title>arimage on "Re-order name fields"</title>
<link>https://www.machform.com/forums/topic/re-order-name-fields#post-24249</link>
<pubDate>Sat, 24 Oct 2015 15:34:55 +0000</pubDate>
<dc:creator>arimage</dc:creator>
<guid isPermaLink="false">24249@https://www.machform.com/forums/</guid>
<description>&#60;p&#62;Is there any easy way to reverse the name field order - i.e. Last-First instead of First-Last?
&#60;/p&#62;</description>
</item>

</channel>
</rss>
