<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.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>THE MOLITOR FORUMS &#187; Topic: Add one more filed</title>
		<link>http://www.themolitor.com/forums/topic/add-one-more-filed</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Add one more filed</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 15:28:50 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/add-one-more-filed" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Add one more filed"</title>
			<link>http://www.themolitor.com/forums/topic/add-one-more-filed#post-30162</link>
			<pubDate>Fri, 18 Jul 2014 08:55:10 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">30162@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>You'll need to add the markup in the various places it shows in the template file. You can look at the pre-existing items to see how it's done and just replace the names with price.</p>
<p>If you need additional help with this, I'll have to ask that you submit a customization request as support does not include customizations like this: <a href="http://themolitor.com/custom" rel="nofollow">http://themolitor.com/custom</a></p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>Nicola on "Add one more filed"</title>
			<link>http://www.themolitor.com/forums/topic/add-one-more-filed#post-30154</link>
			<pubDate>Thu, 17 Jul 2014 18:05:09 +0000</pubDate>
			<dc:creator>Nicola</dc:creator>
			<guid isPermaLink="false">30154@http://www.themolitor.com/forums/</guid>
			<description><p>Hi i have the same problem but my functions.php file is stop before 278 line.</p>
<p>At 259 line i see this code:</p>
<p>////////////////////////<br />
//CUSOTM POST OPTIONS<br />
////////////////////////<br />
include(TEMPLATEPATH . '/include/post-meta.php');</p>
<p>So i open post-meta.php file and edit it as you write.</p>
<p>Now i can see my changes form back end but not in my post.</p>
<p>What can i do?</p>
<p>How can i add an icon?</p>
<p>Thanks</p>
<p>Nicola
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Add one more filed"</title>
			<link>http://www.themolitor.com/forums/topic/add-one-more-filed#post-23105</link>
			<pubDate>Tue, 10 Sep 2013 08:54:37 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">23105@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>The custom post options are controlled from functions.php on lines 259-278...</p>
<pre><code>////////////////////////////
//CUSOTM POST OPTIONS
////////////////////////////
$key = &#34;key&#34;;

$meta_boxes = array(

&#039;recipe-time&#039; =&#62; array(
	&#039;name&#039; =&#62; &#039;recipe-time&#039;,
	&#039;title&#039; =&#62; &#039;Recipe Time&#039;,
	&#039;description&#039; =&#62; &#039;Enter the amount of time it will take to complete this recipe. Example: 1 hr 20 min&#039;
),

&#039;serving-size&#039; =&#62; array(
	&#039;name&#039; =&#62; &#039;serving-size&#039;,
	&#039;title&#039; =&#62; &#039;Serving Size&#039;,
	&#039;description&#039; =&#62; &#039;Enter the yield amount for this recipe. Example: 4 Servings&#039;
)

);</code></pre>
<p>Adding a price field would look like this...</p>
<pre><code>////////////////////////////
//CUSOTM POST OPTIONS
////////////////////////////
$key = &#34;key&#34;;

$meta_boxes = array(

&#039;recipe-time&#039; =&#62; array(
	&#039;name&#039; =&#62; &#039;recipe-time&#039;,
	&#039;title&#039; =&#62; &#039;Recipe Time&#039;,
	&#039;description&#039; =&#62; &#039;Enter the amount of time it will take to complete this recipe. Example: 1 hr 20 min&#039;
),

&#039;serving-size&#039; =&#62; array(
	&#039;name&#039; =&#62; &#039;serving-size&#039;,
	&#039;title&#039; =&#62; &#039;Serving Size&#039;,
	&#039;description&#039; =&#62; &#039;Enter the yield amount for this recipe. Example: 4 Servings&#039;
),

&#039;price&#039; =&#62; array(
	&#039;name&#039; =&#62; &#039;price&#039;,
	&#039;title&#039; =&#62; &#039;Price&#039;,
	&#039;description&#039; =&#62; &#039;Enter the price of this item. Example: $4&#039;
)

);</code></pre>
<p>These settings display in various places on the front-end of the theme. You'll need to add the markup in the various places it shows in the template file. You can look at the pre-existing items to see how it's done and just replace the names with price.</p>
<p>Hope that helps!</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>helgipetersen on "Add one more filed"</title>
			<link>http://www.themolitor.com/forums/topic/add-one-more-filed#post-23092</link>
			<pubDate>Tue, 10 Sep 2013 05:49:03 +0000</pubDate>
			<dc:creator>helgipetersen</dc:creator>
			<guid isPermaLink="false">23092@http://www.themolitor.com/forums/</guid>
			<description><p>Hello,</p>
<p>I want to add one more "Custom post options" with a price field.</p>
<p>Where can I add it?
</p></description>
		</item>

	</channel>
</rss>
