<?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: Blank home page &amp; static front page errors</title>
		<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Blank home page &amp; static front page errors</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 16:53:57 +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/blank-home-page-static-front-page-errors" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors/page/2#post-26849</link>
			<pubDate>Fri, 31 Jan 2014 09:33:09 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26849@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>I'll definitely address this in an update. Thanks for following up!</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>renfrei on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26840</link>
			<pubDate>Fri, 31 Jan 2014 00:32:22 +0000</pubDate>
			<dc:creator>renfrei</dc:creator>
			<guid isPermaLink="false">26840@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris</p>
<p>This is a much better solution for the //LEGACY SUPPORT then the old one. It works for upgraded installations and resolve the problems in new clean installations too. I would be glad if you could insert this code in the next theme-release, together with the app-support ;-).</p>
<p>Greets
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26811</link>
			<pubDate>Thu, 30 Jan 2014 10:29:39 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26811@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Try replacing the <code>//LEGACY SUPPORT</code> section with this...</p>
<pre><code>//LEGACY SUPPORT
$data = get_post_meta( $post-&#62;ID, &#039;key&#039;, true );
if(isset($data[&#039;zoom&#039;])){$oldZoom = $data[&#039;zoom&#039;];}
//if(isset($data[&#039;latitude&#039;])){$oldLatitude = $data[&#039;latitude&#039;];}
//if(isset($data[&#039;longitude&#039;])){$oldLongitude = $data[&#039;longitude&#039;];}
if(isset($data[&#039;address_one&#039;])){$oldAddrOne = $data[&#039;address_one&#039;];}
if(isset($data[&#039;address_two&#039;])){$oldAddrTwo = $data[&#039;address_two&#039;];}
if(isset($data[&#039;pin&#039;])){$oldPin = $data[&#039;pin&#039;];}
if(isset($data[&#039;bg_img&#039;])){$oldBg = $data[&#039;bg_img&#039;];}</code></pre>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>renfrei on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26803</link>
			<pubDate>Thu, 30 Jan 2014 04:14:50 +0000</pubDate>
			<dc:creator>renfrei</dc:creator>
			<guid isPermaLink="false">26803@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris</p>
<p>I have no issues on my site at the moment. I fixed it myself.<br />
My single.php looks like that.</p>
<pre><code>
//LEGACY SUPPORT
//$data = get_post_meta( $post-&#62;ID, 'key', true );
$oldZoom = $data['zoom'];
//$oldLatitude = $data['latitude'];
//$oldLongitude = $data['longitude'];
$oldAddrOne = $data['address_one'];
$oldAddrTwo = $data['address_two'];
$oldPin = $data['pin'];
$oldBg = $data['bg_img'];

//APP SUPPORT
--&#62; that's necessary to get the geo-informations from pictures uploaded from the wordpress mobile app to your template - maybe for further releases ;-)
$oldLatitude = get_post_meta( $post-&#62;ID, 'geo_latitude', TRUE );
$oldLongitude = get_post_meta( $post-&#62;ID, 'geo_longitude', TRUE );

//CHECK FOR LEGACY IF VARS EMPTY
if($zoom){} elseif($oldZoom){$zoom = $oldZoom;} else {$zoom = $postZoom;}
if($latitude){} elseif($oldLatitude){$latitude = $oldLatitude;}
if($longitude){} elseif($oldLongitude){$longitude = $oldLongitude;}
if($addrOne){} elseif($oldAddrOne){$addrOne = $oldAddrOne;}
if($addrTwo){} elseif($oldAddrTwo){$addrTwo = $oldAddrTwo;}
if($pin){} elseif($oldPin){$pin = $oldPin;} else {$pin = $sitePin;}
if($bg){} elseif($oldBg){$bg = $oldBg;} else {$bg = $siteBg;}
</code></pre>
<p>But there is a problem in your theme with the legacy support anyway.<br />
If the $data-line is active,</p>
<pre><code>
//LEGACY SUPPORT
$data = get_post_meta( $post-&#62;ID, 'key', true );
</code></pre>
<p>the following error occur.</p>
<pre>
Warning: Illegal string offset 'zoom' in ../wp-content/themes/wpnavigator/single.php on line 35 - ...
</pre>
<p>Greets
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26778</link>
			<pubDate>Wed, 29 Jan 2014 11:02:37 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26778@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>You don't have to worry about the legacy stuff, but you're okay to remove it if you want.</p>
<p>Regarding the issues you have, can you provide a link to your site?</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>renfrei on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26761</link>
			<pubDate>Wed, 29 Jan 2014 05:46:14 +0000</pubDate>
			<dc:creator>renfrei</dc:creator>
			<guid isPermaLink="false">26761@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris</p>
<p>Thanks for your informations. Some further questions.</p>
<p>When you say "shouldn't be needed" does it mean that i have to blank out the codelines in the template myself (as already done) or is there a easier way? Maybe a function-switch?</p>
<p>What is the exact meaning of "//GET LAT/LONG FROM ADDRESS"? When I write a post with adressline 1 and adressline 2 but without lat/long, it gets an issue on the startingpage because of the missing geo-informations.</p>
<p>Best,<br />
Renato
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26650</link>
			<pubDate>Fri, 24 Jan 2014 10:43:45 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26650@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>The legacy support shouldn't be needed for new clean installations as it's just meant to provide support for users with older data that updated to the newer theme.</p>
<p>Regarding <code>//GET LAT/LONG FROM ADDRESS</code>, that's only used if the lat/long isn't provided by the post.</p>
<p>Hope that explains things.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>renfrei on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26639</link>
			<pubDate>Fri, 24 Jan 2014 07:56:28 +0000</pubDate>
			<dc:creator>renfrei</dc:creator>
			<guid isPermaLink="false">26639@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris</p>
<p>I had the same Problem, but with this "solution" - it works.<br />
Now - there seems to be a problem with the legacy support in new clean installations.<br />
And what's about "//GET LAT/LONG FROM ADDRESS"? It doesn't realy work - I think.</p>
<p>So thanks to fix it in the next release.</p>
<p>And - anyway - thanks for the marvelous theme!
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26113</link>
			<pubDate>Mon, 06 Jan 2014 10:11:58 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26113@http://www.themolitor.com/forums/</guid>
			<description><p>Awesome! Glad it got worked out :-)</p>
<p>If you're enjoying the theme, PLEASE don't forget to rate it on your downloads page on ThemeForest. Positive ratings REALLY help me out.</p>
<p>Thanks!</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26094</link>
			<pubDate>Fri, 03 Jan 2014 17:18:27 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">26094@http://www.themolitor.com/forums/</guid>
			<description><p>Yes, as far as I can tell the issues are solved. Its a very cool theme.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26070</link>
			<pubDate>Fri, 03 Jan 2014 09:39:22 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26070@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Thanks for posting your findings. Were you able to resolve your issues with those edits?</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26058</link>
			<pubDate>Thu, 02 Jan 2014 20:29:34 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">26058@http://www.themolitor.com/forums/</guid>
			<description><p>Oh ok, had to put this back in:</p>
<pre><code>if($pin){} elseif($oldPin){$pin = $oldPin;} else {$pin = $sitePin;}</code></pre></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26057</link>
			<pubDate>Thu, 02 Jan 2014 20:25:16 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">26057@http://www.themolitor.com/forums/</guid>
			<description><p>How can I get location pins to show up on the map, please?
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26056</link>
			<pubDate>Thu, 02 Jan 2014 19:53:41 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">26056@http://www.themolitor.com/forums/</guid>
			<description><p>and single.php and script_list.php<br />
I'm using Wordpress 3.8
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26055</link>
			<pubDate>Thu, 02 Jan 2014 19:39:41 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">26055@http://www.themolitor.com/forums/</guid>
			<description><p>I removed this code in page.php and script.php and the site now works:</p>
<pre><code>//LEGACY SUPPORT
$data = get_post_meta( $post-&#62;ID, &#039;key&#039;, true );
$oldZoom = $data[&#039;zoom&#039;];
$oldLatitude = $data[&#039;latitude&#039;];
$oldLongitude = $data[&#039;longitude&#039;];
$oldAddrOne = $data[&#039;address_one&#039;];
$oldAddrTwo = $data[&#039;address_two&#039;];
$oldPin = $data[&#039;pin&#039;];
$oldBg = $data[&#039;bg_img&#039;];

//CHECK FOR LEGACY IF VARS EMPTY
if($zoom){} elseif($oldZoom){$zoom = $oldZoom;} else {$zoom = $postZoom;}
if($latitude){} elseif($oldLatitude){$latitude = $oldLatitude;}
if($longitude){} elseif($oldLongitude){$longitude = $oldLongitude;}
if($addrOne){} elseif($oldAddrOne){$addrOne = $oldAddrOne;}
if($addrTwo){} elseif($oldAddrTwo){$addrTwo = $oldAddrTwo;}
if($pin){} elseif($oldPin){$pin = $oldPin;} else {$pin = $sitePin;}
if($bg){} elseif($oldBg){$bg = $oldBg;} else {$bg = $siteBg;}</code></pre></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26054</link>
			<pubDate>Thu, 02 Jan 2014 18:38:18 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">26054@http://www.themolitor.com/forums/</guid>
			<description><p>I did that and it still did not work. I have started with a fresh install and it still doesn't work. I've read through your help file and still nothing. I've been building sites with wordpress for over ten years and have never had this much trouble. I really want to like your theme. Can you please provide some helpful support?
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-26009</link>
			<pubDate>Thu, 02 Jan 2014 09:58:50 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">26009@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Unfortunately I can't tell by looking at your source code which posts appear to have issues.</p>
<p>One thing to try is to put all your posts in pending status and then go through and only put a small group of posts in published status one at a time.</p>
<p>This will be the best way to make sure there are no issues with your posts.</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25990</link>
			<pubDate>Tue, 31 Dec 2013 09:42:51 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25990@http://www.themolitor.com/forums/</guid>
			<description><p>I have reviewed each post multiple times. I do not see any errors. I am not clear on what an error would look like. Could you please be more specific about which posts and what the errors are?<br />
Thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25988</link>
			<pubDate>Tue, 31 Dec 2013 09:37:10 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25988@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Looking at your source code, some of your posts appear to contain errors. Please review each post and make sure the custom post options (below the content box) do not have any errors.</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25982</link>
			<pubDate>Tue, 31 Dec 2013 09:24:19 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25982@http://www.themolitor.com/forums/</guid>
			<description><p>Yes, that makes sense. All the location posts are now assigned to a location category. I put a non-location blog post in the blog category as well. Still nothing displaying on the home page. Nothing is displaying on any of the category pages, either..
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25976</link>
			<pubDate>Tue, 31 Dec 2013 09:05:07 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25976@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>All categories are map-based by default. The blog category isn't intended to function as a map-based category, which is why you need to select a designated blog category on the customize page. </p>
<p>Looking at the demo site as an example, all posts on the map are in the locations category, and all blog posts are in the "Blog" category.</p>
<p>Let me know if that clarifies things.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25959</link>
			<pubDate>Mon, 30 Dec 2013 15:40:18 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25959@http://www.themolitor.com/forums/</guid>
			<description><p>How do you define a map-based category? I put them all in the "blog" category, but maybe you meant all separate categories. Still nothing on the home page.<br />
I'll email you a login if that helps.</p>
<p>Thank you for the replies!<br />
Mary
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25954</link>
			<pubDate>Mon, 30 Dec 2013 14:55:28 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25954@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Try making your blog posts in separate categories so that blog posts aren't in any map-based categories.</p>
<p>Let me know if that helps at all.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25940</link>
			<pubDate>Mon, 30 Dec 2013 14:21:27 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25940@http://www.themolitor.com/forums/</guid>
			<description><p>It looks like all those settings are filled in. I just uploaded a logo as well.
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25938</link>
			<pubDate>Mon, 30 Dec 2013 14:15:19 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25938@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Try making sure all your theme options are filled out on the customize page (i.e. logo, blog category, etc.) just to make sure those aren't possible causes.</p>
<p>Let me know.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25912</link>
			<pubDate>Mon, 30 Dec 2013 10:54:42 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25912@http://www.themolitor.com/forums/</guid>
			<description><p>Hi Chris,</p>
<p>Thank you for the reply. I checked all location data (lat/long) and they look good. The maps are showing up on the single post pages as well.</p>
<p>Mary
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25909</link>
			<pubDate>Mon, 30 Dec 2013 10:48:17 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">25909@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>Please review each of your posts and make sure there is proper location data entered in the custom post options. If there are errors there, it will prevent the map from loading.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25877</link>
			<pubDate>Sun, 29 Dec 2013 17:35:55 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25877@http://www.themolitor.com/forums/</guid>
			<description><p>I realize you're off on the weekend. I want to clarify my settings.<br />
All plugins deactivated<br />
static front page set to "your latest posts"<br />
lat/long entered for posts</p>
<p>only place a map shows up is on the single post page
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25863</link>
			<pubDate>Fri, 27 Dec 2013 18:28:44 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25863@http://www.themolitor.com/forums/</guid>
			<description><p>Also, how to get the location pins and map to show up on a location page?<br />
Like here: <a href="http://hungrypilots.com/category/locations/north-america/florida/" rel="nofollow">http://hungrypilots.com/category/locations/north-america/florida/</a></p>
<p>Thank you! I have searched documentation and the forum and haven't found these answers.
</p></description>
		</item>
		<item>
			<title>marymacit on "Blank home page &amp; static front page errors"</title>
			<link>http://www.themolitor.com/forums/topic/blank-home-page-static-front-page-errors#post-25862</link>
			<pubDate>Fri, 27 Dec 2013 17:19:03 +0000</pubDate>
			<dc:creator>marymacit</dc:creator>
			<guid isPermaLink="false">25862@http://www.themolitor.com/forums/</guid>
			<description><p>ok, so I updated the "locations" page to have a lat/long and assigned it to the static front page. How can I get all the location pins to show up on the home page?
</p></description>
		</item>

	</channel>
</rss>
