<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>The UltimateIDX</title>
	<atom:link href="http://www.ultimateidx.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ultimateidx.com</link>
	<description>This blog is for discussion of features and utility for the UltimateIDX™ who is a proven leader in RETS and IDX services for real estate websites and Agents needing MLS data to capture real estate leads.</description>
	<lastBuildDate>Thu, 25 Feb 2010 02:54:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>WP Menu Creator with Thesis Theme</title>
		<link>http://www.ultimateidx.com/blog/menu-creator-thesis-theme/</link>
		<comments>http://www.ultimateidx.com/blog/menu-creator-thesis-theme/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 01:28:37 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[WordPress Menu Creator]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=493</guid>
		<description><![CDATA[Cascading CSS Navigation In Thesis
When it comes to delivering custom websites at competitive pricing any good service provider should build and maintain an inventory of foundation design elements to help with rapid deployment of client sites.  Such an inventory can take a great deal of time to acquire and maintaining the design elements or [...]]]></description>
			<content:encoded><![CDATA[<h2>Cascading CSS Navigation In Thesis</h2>
<p>When it comes to delivering custom websites at competitive pricing any good service provider should build and maintain an inventory of foundation design elements to help with rapid deployment of client sites.  Such an inventory can take a great deal of time to acquire and maintaining the design elements or template foundations to be consistent with trends and front line practices can be a daunting task.  Thankfully there are a few good theme development platforms that eliminates many of these design frustration for a designer.  Once such theme is the THESIS by DIYThemes.</p>
<p>Over the past year, THESIS has grown exponentially in terms of its use by developers as a foundation framework for site design.  Due no doubt to the lofty list of features that THESIS includes, THESIS makes the project development flow a bit quicker and easier to maintain.  Because of the popularity of THESIS, the ever growing list of people that wish to add our WordPress Menu Creator plug-in to a THESIS design has also grown.   Although THESIS has menu management features integrated with the themes options, clients and web designers often seek to employ our plug-in where much tighter and more CMS like control over menu management is desired.  So I&#8217;m going to show you the quick and easy way to deploy Menu Creator in Thesis.</p>
<h3>Thesis Hooks &#8211; Replacing Stock Menu with Menu Creator</h3>
<p>Now, in order to begin this relatively simple process you must have THESIS 1.6 installed and you must have renamed the example custom folder to /custom/ in order to make the edits necessary for using the menu creator.  You should also have the menu creator installed and activated.  Optionally you should create a menu and title it as &#8220;Top Navigation&#8221; or something similar.</p>
<p>Now, before we begin the actual edits please keep the following in mind. It is very important to note that the generated code by the WP Menu Creator is simply an XHTML compliant unordered list. The &lt; ul &gt; will have an ID assigned to it based on the menu ID so the very first menu you create would be Menu ID 1, so the resulting markup for the unordered list would be &lt; ul id=&#8221;mc_menu_1&#8243; &gt; As such, we will address the styling options toward the end of this article.</p>
<p>Simply navigate to the THESIS settings menu and select custom file editor. Then, select from the drop down list the custom_functions.php to add the necessary code.</p>
<p><img src="http://www.ultimateidx.com/images/thesis-options.gif" alt="Thesis Options - File Editor" class="centered" /></p>
<h3>The default custom_functions.php looks like this;</h3>
<pre class="brush: php;">
function custom_bookmark_links() {
global $post;
?&gt;
&lt;ul class=&quot;bookmark_links&quot;&gt;
&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://delicious.com/save?url=&lt;?php urlencode(the_permalink()); ?&gt;&amp;amp;title=&lt;?php urlencode(the_title()); ?&gt;&quot; onclick=&quot;window.open('http://delicious.com/save?v=5&amp;amp;noui&amp;amp;jump=close&amp;amp;url=&lt;?php urlencode(the_permalink()); ?&gt;&amp;amp;title=&lt;?php urlencode(the_title()); ?&gt;', 'delicious', 'toolbar=no,width=550,height=550'); return false;&quot; title=&quot;Bookmark this post on del.icio.us&quot;&gt;Bookmark this article on Delicious&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;?php
}
</pre>
<p>Just after the closing bracket, assuming your custom_functions.php file has not been previously edited, you will enter the code as follows.  Make sure you change the menu ID to be consistent with the actual WP Menu Creator ID.</p>
<p><img src="http://www.ultimateidx.com/images/menuid.gif" alt="WordPress Menu Creator Menu ID" class="centered" /></p>
<p>The following code tells thesis to remove its &#8220;thesis_nav_menu&#8221; and add the menu creator. If the displayMenu function exists (if the plugin is activated) it will display menu ID 1. If not I have this example to show the categories.</p>
<pre class="brush: php;">
function menucreator() {
	if (function_exists('displayMenu')) {
	displayMenu(1);
	} else {
		echo '&lt;ul id=&quot;mc_menu_1&quot;&gt;';
		wp_list_categories('title_li=');
		echo '&lt;/ul&gt;';
	}
}

remove_action('thesis_hook_before_header','thesis_nav_menu');
add_action('thesis_hook_before_header','menucreator');
</pre>
<p>Alternatively you could replace the section where wp_list_categories exists and show the actual thesis navigation if the menu creator is not active or a menu is not created. The code would look like this.</p>
<pre class="brush: php;">
function menucreator() {
	if (function_exists('displayMenu')) {
	displayMenu(1);
	} else {
		thesis_nav_menu();
	}
}

remove_action('thesis_hook_before_header','thesis_nav_menu');
add_action('thesis_hook_before_header','menucreator');
</pre>
<p>The final result should look something similar to this.</p>
<pre class="brush: php;">
function custom_bookmark_links() {
global $post;
?&gt;
&lt;ul class=&quot;bookmark_links&quot;&gt;
&lt;li&gt;&lt;a rel=&quot;nofollow&quot; href=&quot;http://delicious.com/save?url=&lt;?php urlencode(the_permalink()); ?&gt;&amp;amp;title=&lt;?php urlencode(the_title()); ?&gt;&quot; onclick=&quot;window.open('http://delicious.com/save?v=5&amp;amp;noui&amp;amp;jump=close&amp;amp;url=&lt;?php urlencode(the_permalink()); ?&gt;&amp;amp;title=&lt;?php urlencode(the_title()); ?&gt;', 'delicious', 'toolbar=no,width=550,height=550'); return false;&quot; title=&quot;Bookmark this post on del.icio.us&quot;&gt;Bookmark this article on Delicious&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;?php
}

function menucreator() {
	if (function_exists('displayMenu')) {
	displayMenu(1);
	} else {
		echo '&lt;ul id=&quot;mc_menu_1&quot;&gt;';
		wp_list_categories('title_li=');
		echo '&lt;/ul&gt;';
	}
}

remove_action('thesis_hook_before_header','thesis_nav_menu');
add_action('thesis_hook_before_header','menucreator');
</pre>
<h3>Some Final Notes</h3>
<p>As mentioned above, the Menu Creator renders the UL with the menu ID so each menu can be individually styled.  Since it will render the menu without any CSS reference at all you can opt to include the existing CSS for the THESIS menu in the custom css file by changing the directives or you can add your own CSS. There are countless examples of CSS navigation using this markup so the possibilities are endless.</p>
<p>Please feel free to ask for help if you need it.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/menu-creator-thesis-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>It’s Vegas Baby</title>
		<link>http://www.ultimateidx.com/blog/its-vegas-baby/</link>
		<comments>http://www.ultimateidx.com/blog/its-vegas-baby/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 20:12:39 +0000</pubDate>
		<dc:creator>SEOWolf</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=491</guid>
		<description><![CDATA[While our UltimateIDX Clients are aware of our recent move  to Las Vegas, Nevada this is the first public announcement  of our corporate move.
While Missouri will always  be home, Columbia  simply did not offer the advantages necessary for our coming expansion efforts.
Las Vegas  offers a much larger labor pool of [...]]]></description>
			<content:encoded><![CDATA[<p>While our UltimateIDX Clients are aware of our recent move  to Las Vegas, Nevada this is the first public announcement  of our corporate move.</p>
<p>While Missouri will always  be home, Columbia  simply did not offer the advantages necessary for our coming expansion efforts.</p>
<p>Las Vegas  offers a much larger labor pool of individuals with the necessary skills to  become a Member of the UltimateIDX Team. We are now located on minutes from an International Airport making travel for meetings much  more convenient for staff and Clients alike. And since the move there has been  an increase of Clients wanting to visit us.</p>
<p>Although we are now located in the most exciting city on  earth we will never forget our humble beginnings in a sleepy little town in America&rsquo;s heartland.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/its-vegas-baby/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Wordpress Real Estate Plugin Myth</title>
		<link>http://www.ultimateidx.com/blog/wordpress-real-estate-plugin-myth/</link>
		<comments>http://www.ultimateidx.com/blog/wordpress-real-estate-plugin-myth/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 19:45:42 +0000</pubDate>
		<dc:creator>SEOWolf</dc:creator>
				<category><![CDATA[Real Estate Websites]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=489</guid>
		<description><![CDATA[I receive calls and emails daily for a Wordpress Real Estate plugin that will magically import data from a MLS database into a Wordpress real estate website. That plugin does not exist and never will. 
Mission Impossible
There are hundreds of local MLS Boards nationally. Each Board owns and maintains their own data and therefore all [...]]]></description>
			<content:encoded><![CDATA[<p>I receive calls and emails daily for a Wordpress Real Estate plugin that will magically import data from a MLS database into a <a href="http://www.ultimateidx.com/wordpress-websites/">Wordpress real estate website</a>. That plugin does <strong>not exist</strong> and never will. </p>
<h3>Mission Impossible</h3>
<p>There are hundreds of local MLS Boards nationally. Each Board owns and maintains their own data and therefore all have different data fields and formats. So it would be necessary for a developer to develop not 1 but hundreds of plugins. Additionally, most MLS Boards constantly change their fields. So each of these plugins would have to be maintained to ensure service interruptions would not occur and the proper data was delivered to the end users. This would be a maintenance nightmare not unlike those experienced by Open Realty users.</p>
<p>An excellent technical article about why this will never happen was authored by Ron Goodman on his <a href="http://blogs.denverhomevalue.com/technical/idx-plugin-for-joomla-or-wp-no-universal-solution/" target="_blank">Denver Real Estate Blog</a>. Ron goes into depth about the issues involved in data migration and how attempts to build a magic plugin thus far have been nothing short of lacking.</p>
<h3>Compliance and Policing Nightmare</h3>
<p>In addition to the maintenance headaches, Local Boards and the <a href="http://www.realtor.org/" target="_blank" rel="nofollow">National Association of REALTORS®</a> would find it difficult if not impossible to police a Wordpress Realty plugin for compliance. In addition to redistribution issues many local boards have, each have their own compliance rules and regulations. The Boards may require submissions of search templates for compliance reviews prior to displaying publicly. A prime example of this <a href="http://onemymls.mymls.com/" target="_blank" rel="nofollow">Metrolist in Denver</a>. Violation of compliance rules and regulations for display of data can lead to fines as much as $1,000 per occurrence. Since the site owner can change template layouts on the fly so to speak, this could lead to costly compliance issues.</p>
<p>Many Local Boards have implemented security protocols to protect &ldquo;their&rdquo; data. Any so called Wordpress Real Estate plugin that would import data for redistribution on a Broker/Agent site would need to store the data on servers used by the Broker or Agent&rsquo;s website. Not all dedicated servers would meet the stringent security requirements of many Local Boards.</p>
<p>With these compliance and policing issues it is only reasonable to expect that NAR and the local boards to enact policies prohibiting such plugins in the not so distant future resulting in the loss of any time and money spent chasing this myth.</p>
<h3>Misunderstood Plugin Functionality</h3>
<p>There are a couple of Wordpress plugins out there for real estate that are completely misunderstood when it comes to functionality. There is NO WP plugin that will import the MLS data directly into your real estate website. The process for the listings data to get into your website is as follows:</p>
<ol>
<li>Receive the MLS Data from the Local Board that owns it with its permission.</li>
<li> Map the raw data to the fields within the Wordpress plugins parameters.</li>
<li> Follow all rules and regulations imposed by the Local Board and NAR when it comes to display and/or redistribution of MLS data.</li>
</ol>
<p>I recently ran across a competitor that claims to have a Wordpress Real Estate Plugin in beta. This competitor makes no mention of the fact that in order to use the plugin you must first be an IDX/RETS client of theirs. Is this deceptive advertising or an oversight? That is for you to decide.</p>
<h3>Joomla and Drupal </h3>
<p>Before I get slammed with anymore emails about a magic real estate plugin to import MLS data into a Joomla or Drupal website let me state that they do not exists for the same technical reasons as Wordpress.</p>
<h4>Summary</h4>
<p>In addition to all the reasons above you should rethink any attempt to locate or use a Wordpress Real Estate plugin. Those REALTORS&reg; that have pursued the magic WP Real Estate Plugin Myth have wasted a great deal of time and money in addition to most likely breaking a few compliance rules along the way.</p>
<p>For the REALTORS&reg; that have managed to use one of these plugins with some success after paying the vendor&rsquo;s data mapping fees, constant maintenance fees, extra server storage and extra bandwidth fail to understand they end up with only part of a system and the search functionality is the simplest part of any IDX/RETS solution for MLS. The heart of any RETS/IDX solution is the CRM for lead management and is powered by the capabilities of the system to effectively capture and manage leads.</p>
<p>With all the years of training and experience dealing with FSBO vs. REALTOR&reg; services you would think this article would NOT be necessary and that I was just &ldquo;Preaching to the Choir&rdquo; about &ldquo;do-it-your-self&rdquo; professional services however, the calls and emails for the Wordpress Real Estate plugin just keep coming in.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/wordpress-real-estate-plugin-myth/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
		</item>
		<item>
		<title>WordPress Menu Creator 2.0</title>
		<link>http://www.ultimateidx.com/blog/wordpress-menu-creator-2-0/</link>
		<comments>http://www.ultimateidx.com/blog/wordpress-menu-creator-2-0/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 19:09:43 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[WordPress Menu Creator]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=475</guid>
		<description><![CDATA[Making a big jump from WP Menu Creator 1.7 to version 2.0 as we have sat on updates for many weeks eagerly awaiting a look at WordPress 2.9 before we committed to anything. I&#8217;m happy to say that WP Menu Creator will work with version 2.9 of WordPress.
What new features are in the new Menu [...]]]></description>
			<content:encoded><![CDATA[<p>Making a big jump from WP Menu Creator 1.7 to version 2.0 as we have sat on updates for many weeks eagerly awaiting a look at WordPress 2.9 before we committed to anything. I&#8217;m happy to say that WP Menu Creator will work with version 2.9 of WordPress.</p>
<h2>What new features are in the new Menu Creator?</h2>
<ul>
<li>You can add your page or post to a menu while in the WYSWYG editor. Simply select the menu, title it, and publish.</li>
<li>A new page / post look-up feature will provide you with an easy way to get the page or post ID while in the Menu Creator panel. No more need to go searching.</li>
<li>Better image support for menus that will provide you with quick edit features.</li>
<li>The ability to reset the menu ID and the ability to edit the menu name. Requested dozens of times so its going to be a feature.</li>
<li>Saving the best for the last, the Menu Creator will have a CSS feature where you can save and edit the CSS for each individual menu.</li>
</ul>
<p>I&#8217;ll post more when it is available.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/wordpress-menu-creator-2-0/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>WordPress Menu Creator Examples</title>
		<link>http://www.ultimateidx.com/blog/menu-creator-examples/</link>
		<comments>http://www.ultimateidx.com/blog/menu-creator-examples/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:11:03 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[WordPress Menu Creator]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=467</guid>
		<description><![CDATA[Currently we have about 30 submitted sites that use the WordPress Menu Creator and we are going to publish these and others in three separate categories. The categories are; Theme developers that distribute the Menu Creator in their themes, Sites that use the Menu Creator, Sites that use third party themes converted to work with [...]]]></description>
			<content:encoded><![CDATA[<p>Currently we have about 30 submitted sites that use the WordPress Menu Creator and we are going to publish these and others in three separate categories. The categories are; Theme developers that distribute the Menu Creator in their themes, Sites that use the Menu Creator, Sites that use third party themes converted to work with menu creator.  Although the actual titles of these categories are not set in stone as of yet, they do represent the three main areas we want to share with users of this plug-in.  I&#8217;ll explain a little more on what each category will represent and you can submit your feedback or link for inclusion in the page of examples that are befitting of these categories. Once your example is published in these categories, you can link back if you so desire and naturally submit additional examples as you make them available. I&#8217;ll return to this post a little later and provide links to each of those categories. Lets look at what each of these categories will be applied to and how we intend on using them;</p>
<h3>Theme developers that distribute the Menu Creator</h3>
<p>Since we make it super easy to distribute the Menu Creator in themes, we decided to create a category that will feature details and links back to those theme developers. The theme developer simply submits a few short paragraphs about their theme, a screen shot, the link they want us to publish and we are going to start providing links to those in support of the WordPress Menu Creator.  Our only requirement is that the short summary you submit must state that it employs the WP Menu Creator.</p>
<p><strong>Why distribute WP Menu Creator in your theme?</strong> Simple! Its void of any link back requirements, we do not advertise or solicit products or services in the plug-in, there are no heavy branding or other types of &#8220;thou shalt worship us&#8221; phrases in the plug-in, its super easy to implement into your theme for distribution given the code we provide and there is no cost to you. You gain by providing the absolute best possible menu management solution available for WordPress which is so flexible it can literally accommodate any type of CSS / XHTML compliant menu system. We already have many theme developers publishing themes with the Menu Creator for you to examine their solutions.</p>
<h3>Site owners and developers</h3>
<p>We get requests to help theme designers and webmasters implement the WP Menu Creator several times a week. After having provided technical assistance and even examples of the code to many of our plug-in users, we decided that we are going to start publishing summary details and links to those projects or developers that use the Menu Creator. Like the category above, when we publish the details, we all also publish a one way link back to the project site and even a screen shot of the menu system being employed.</p>
<p>The idea behind this is simple. When we first built the WP Menu Creator we knew that it would need to be so flexible that it would literally accommodate hundreds if not thousands of different types of CSS / XHTML compliant menus for WordPress.  Like our new WP Form Creator or the WP Zillow plug-ins we also publish, we decided that maybe the best way to make our products truly flexible is to simply not deliver any CSS markup for styling. We didn&#8217;t want users of the products to think that these were the only possible styling options thereby giving us a poor rating on the power of the Menu Creator or Form Creator for instance.</p>
<h3>Third Party Themes Implementation</h3>
<p>Almost daily, we receive about a half a dozen requests for help in using the WP Menu Creator with third party themes like those published by Thesis or StudioPress themes among many others. Although we are happy to provide assistance to users of our plug-in, the number of requests at times becomes a bit high and difficult to keep up with. These types of themes differ from the average site owner or developer of custom works in that these themes are most often commercial and are usually quite popular with literally thousands of bloggers using them. Because of this we have published code snippets and instructions on how to modify some of the more popular themes for use with the Menu Creator and will begin publishing those examples today in the new section we have setup. <a href="http://www.ultimateidx.com/blog/wordpress-menu-management-problems/">The number one problem with WordPress Menu Management</a> is the requirement that most theme developers essentially require you to manage your menu by managing the way you publish your content. This is neither effective or consistent with proper menu management.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/menu-creator-examples/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>The Number One Problem with WordPress Menus</title>
		<link>http://www.ultimateidx.com/blog/wordpress-menu-management-problems/</link>
		<comments>http://www.ultimateidx.com/blog/wordpress-menu-management-problems/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 16:07:35 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[WordPress Menu Creator]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=472</guid>
		<description><![CDATA[Better Menu Management for WordPress
For the most part, menu management in WordPress is largely handled by the themes coded features that display links as a result of posts, pages or other types of navigable elements within your blog. As WordPress grows in its use as a CMS solution, existing menu and navigation methods become quirky [...]]]></description>
			<content:encoded><![CDATA[<h2>Better Menu Management for WordPress</h2>
<p>For the most part, menu management in WordPress is largely handled by the themes coded features that display links as a result of posts, pages or other types of navigable elements within your blog. As WordPress grows in its use as a CMS solution, existing menu and navigation methods become quirky and un-natural in following the true essence of a CMS solution.  In order to be a true CMS, content and the navigation must not be inner-dependent and should not require even casual manipulation of your sites content structure in order to achieve the navigation structure you desire.  With WordPress as either a blog or a CMS solution, navigation for any effective website must (or should) follow the principles of guided navigation and should have a URL structure that is as shallow as possible in order to be truly user friendly. Navigation links should also be able to be controlled in a way that allows for inclusion of keywords in the title, alt tags, and even an option to control which links are followed and which are not by the site manager. </p>
<p>With most themes being published today, methods being used are not befitting of good site navigation or design and can actually be counter productive to your objective. Many themes present the three primary issues that bloggers suffer most in regard to website and menu management; The number one problem with WordPress menus is that they are literally not easily managed, therefore the subject of this post. Subsequently WordPress Menus generally do not follow good principles of guided navigation, and last they require modification to the content structure to achieve even casual structuring. You can examine each of these three issues as we continue below.</p>
<h2>Principles of Guided Navigation in WordPress or any CMS Solution</h2>
<p>Guided navigation is articulated best by comparing it to good goal planning or task list practices. With any truly effective goal setting process, the goal planner will almost always start out with broader more generalized final goal or end result, and then identify the steps to be broken down into smaller more manageable tasks. One of the primary goals for any website owner should be to get the right information to their visitors as quickly and painlessly as they can. It may also be the goal to lead your client to the products and services quickly enough as to capture the lead or even the sale and in order to do so. Studies indicate that the faster you do this the more likely a person will stay on your site and the more likely they will make a decision to contact your or purchase a product.  Well organized sites are not just perceived as being better, they literally are better in terms of effectiveness and user friendliness. With that in mind we can summarize the elements of Guided Navigation as being the identification of the goal, the steps or tasks in which to reach the goal and the methods you use to guide the end user through the tasks as painlessly as possible.</p>
<p>Goals in the case of a website are actually identified by more than just the site owner. Visitors to your site have their own objectives in visiting you and may have their own ideas as to how to find what they are seeking. Because of this, a good site manager will always keep in mind that the entry point into the site will rarely be the front page. When someone Googles a term, locates a page within your site, the point of entry will not likely be the front page. Good guided navigation suggests that if you are conscious of this, your site will at bare minimum feature general topics in the navigation that can then be narrowed down to finder points. A sort of general to specific navigation structure really does make up the ideal example of how guided navigation should work. Lets look at how many themes miss this principle.</p>
<h2>Content Structure Limitations With Most WordPress Themes</h2>
<p>Nearly every WordPress theme I&#8217;ve examined, has menu navigation based on categories and pages with posts being displayed in some manor of &#8220;latest&#8221; something or other. Although many WordPress themes are exceptionally fine at presenting the aesthetic appeal side of a blog or CMS, they tend to lack heavily in the management of good overall structuring of a CMS type solution. Your menu should not be dependent on the structure of your content. With many themes this is the common way of structuring both navigation and content.</p>
<p>Studies indicate that the more shallow your URL structure is the more likely it will be referred to others and remembered by end users.</p>
<h2>The Best WordPress Menu Management Solution</h2>
<p>Menu management should be simple, quick, user defined, and most important guided. In order to achieve this there is only one tool available for Guided Navigation, that fits the bill of true menu management and that is our tool the WordPress Menu Creator.  The tool or plug-in as its known, is essentially a generator of sorts that renders an XHTML Unordered List of link elements that you can style and modify according to your sites design. The Menu Creator can be applied to most third party themes with little modification. What does the Menu Creator provide? This list can answer that.</p>
<ul>
<li>CSS / XHTML Compliant Output</li>
<li>XHTML Compliant External Window Popup, not the old target=&#8221;_blank&#8221;</li>
<li>Supports the use of images as menu items</li>
<li>Supports additional inline wrappers such as the SPAN tag.</li>
<li>Supports full drag and drop sortable functionality</li>
<li>Supports three REL options; external, canonical and nofollow.</li>
<li>Can be distributed free of charge with your commercial or non commercial themes.</li>
<li>Has inline integrated tutorials and guides</li>
<li>Can be used externally from WordPress to control menus in static HTML or even Joomla, Drupal or OpenRealty sites.</li>
<li>Can support literally thousands of potential menu designs and styles.</li>
<li>Supports cascading suckerfish type menus including the MooTools and jQuery configurations</li>
<li>Supports Accordian Type Menus</li>
<li>The list goes on and on.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/wordpress-menu-management-problems/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Menu Creator for BFA Atahualpa WP Theme</title>
		<link>http://www.ultimateidx.com/blog/atahualpa-theme-navigation/</link>
		<comments>http://www.ultimateidx.com/blog/atahualpa-theme-navigation/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 14:32:54 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=469</guid>
		<description><![CDATA[Submitted by user of the Menu Creator, this modification guide is well documented on how to apply the WP Menu Creator to the BFA Atahualpa WP Theme.  You can read about the implementation on the project site located on the Denver Home Real Estate Site for more details.
After receiving so many code submissions and [...]]]></description>
			<content:encoded><![CDATA[<p>Submitted by user of the Menu Creator, this modification guide is well documented on how to apply the WP Menu Creator to the <strong>BFA Atahualpa WP Theme</strong>.  You can read about the implementation on the project site located on the <a href="http://blogs.denverhomevalue.com/technical/configuring-ultimate-idx-menu-maker-plugin-for-the-bfa-atahualpa-wp-theme/">Denver Home Real Estate Site</a> for more details.</p>
<p>After receiving so many code submissions and snippets from users of the WP Menu Creator, we have setup a new page to provide a one way link back to the project site so that others may see how the plug-in is being used. I wrote a brief announcement about it here and you can examine the new categories and examples from around the web as we publish them.</p>
<p>A quick note, keep an eye out for our Form Creator which will be released today on WordPress.org as a full production release.  Having struggled with countless issues in the DOM library in order to make it compatible with so many of the different types of themes, we finally got the plug-in whipped into shape in order to get it published. You can look for the plugin on <a href="http://wordpress.org/extend/plugins/wp-form-creator/">WordPress</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/atahualpa-theme-navigation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Google REL Canonical URL</title>
		<link>http://www.ultimateidx.com/blog/google-rel-canonical-url/</link>
		<comments>http://www.ultimateidx.com/blog/google-rel-canonical-url/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 16:49:51 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[WordPress Menu Creator]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=461</guid>
		<description><![CDATA[Today we added a new feature to the Menu Creator to allow you to set yet another option in your link structure in response to the Google REL Canonical URL update. Google made a post along with a video related to this new feature as presented by Matt Cutts and its worth a look because [...]]]></description>
			<content:encoded><![CDATA[<p>Today we added a new feature to the Menu Creator to allow you to set yet another option in your link structure in response to the Google REL Canonical URL update. Google made a post along with a video related to this new feature as presented by Matt Cutts and its worth a look because reckless application of this in your site can be consequential and counter productive to your efforts.  Key points from Google include;</p>
<blockquote cite"http://www.google.com/support/webmasters/bin/answer.py?hl=en&#038;answer=139394">
<h4>Is rel=&#8221;canonical&#8221; a suggestion or a directive?</h4>
<p>This new option lets site owners suggest the version of a page that Google should treat as canonical. Google will take this into account, in conjunction with other signals, when determining which URL sets contain identical content, and calculating the most relevant of these pages to display in search results.</p>
<h4>Can the link be relative or absolute?</h4>
<p>The rel=&#8221;canonical&#8221; attribute can be used with relative or absolute links, but we recommend using absolute links to minimize potential confusion or difficulties. If your document specifies a base link, any relative links will be relative to that base link.</p>
</blockquote>
<p>In using this feature within the Menu Creator it is a good idea to pay special attention to how you are using it, why you are using it and where you are using it.  Since we built the Menu Creator to function on sites that may include shopping carts, OpenRealty, and even other CMS solutions, you have the option via our code library to not only manage menus externally of WordPress but even on external domains. If you are using these features it is ESPECIALLY IMPORTANT to note that this new REL element is for a specific local domain and not remote or multiple domains as is the case with 301 redirects for instance.</p>
<p>If you have questions, please either contact us directly or simply post a comment below that we may answer publicly for others to see as well.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/google-rel-canonical-url/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Real Estate Webmasters Not Worth the Time</title>
		<link>http://www.ultimateidx.com/blog/real-estate-webmasters-not-worth-the-time/</link>
		<comments>http://www.ultimateidx.com/blog/real-estate-webmasters-not-worth-the-time/#comments</comments>
		<pubDate>Wed, 29 Jul 2009 20:41:10 +0000</pubDate>
		<dc:creator>SEOWolf</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Real Estate News]]></category>
		<category><![CDATA[Real Estate Websites]]></category>
		<category><![CDATA[Blogs]]></category>
		<category><![CDATA[Forums]]></category>
		<category><![CDATA[IBLs]]></category>
		<category><![CDATA[Links]]></category>
		<category><![CDATA[NoFollow Tags]]></category>
		<category><![CDATA[Real Estate Webmaster Forum]]></category>
		<category><![CDATA[Real Estate Webmasters]]></category>
		<category><![CDATA[REW]]></category>
		<category><![CDATA[REW Members]]></category>
		<category><![CDATA[Uber Real Estate Webmaster]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=413</guid>
		<description><![CDATA[Is Real Estate Webmasters Forum Really Worth the Time
From time to time we do check out the Real Estate Webmasters forum just to see if the former Canadian  porn webmaster turned Real Estate sales evangelist is slamming UltimateIDX or PREN.
Today I forgot to turn my Fire Fox  DoFollow link checker off before I [...]]]></description>
			<content:encoded><![CDATA[<h2>Is Real Estate Webmasters Forum Really Worth the Time</h2>
<p>From time to time we do check out the <a href="http://www.realestatewebmasters.com/forum.php" target="_blank" rel="nofollow"><strong>Real Estate Webmasters forum</strong></a> just to see if the former Canadian  porn webmaster turned Real Estate sales evangelist is slamming UltimateIDX or <a href="http://www.prorealestatenetwork.com/" target="_blank"><strong>PREN</strong></a>.</p>
<p>Today I forgot to turn my <a href="https://addons.mozilla.org/en-US/firefox/addon/5687" target="_blank">Fire Fox  DoFollow link checker</a> off before I went to the <a href="http://www.realestatewebmasters.com/forum.php" target="_blank" rel="nofollow"> <strong>Real Estate Webmasters forum</strong></a> and  low an behold I noticed a Member with over 500 posts had &ldquo;<a href="http://en.wikipedia.org/wiki/Nofollow" target="_blank"><strong>nofollow</strong></a>&rdquo; tags on all  of his signature links. I remember hearing something about <a href="http://www.realestatewebmasters.com/forum.php" target="_blank" rel="nofollow"><strong>REW Members</strong></a> with  less than 300 posts would have the &ldquo;<a href="http://en.wikipedia.org/wiki/Nofollow" target="_blank"><strong>nofollow</strong></a>&rdquo; tag on their signatures but had  no idea that was implemented or substantially raised until today.</p>
<p>It now appears that the figure to  achieve before <a href="http://www.realestatewebmasters.com/forum.php" target="_blank" rel="nofollow"><strong>REW Members</strong></a> get any credit for posting is over 650. Please don&rsquo;t  take my word on this. <a href="http://www.backlinkwatch.com/" target="_blank">Check it out for yourself</a>. Now that seems like one hellofalot  of work on Morgan&rsquo;s website <em><strong>BEFORE</strong></em> you get any link love.</p>
<p>My question is what will REW raise  it to the next time 1,000 posts, 1,500 posts or??? And do New <strong>REW Members</strong> know  about this?</p>
<h3>The Rest of the Story</h3>
<p>OK I admit my curiosity kicked in  and I really needed to know &ldquo;the rest of the strory&rdquo;, so I started checking  further. Right off the bat you can see that REW places a &ldquo;nofollow&rdquo; tag on any text links within a post and it is obvious that Google has substantially devalued <a href="http://www.realestatewebmasters.com/blogs/" target="_blank" rel="nofollow"><strong>REW Blogs</strong></a> and any inbound links from these blogs.</p>
<p>So then I wanted to know what kind  of link juice the <a href="http://www.realestatewebmasters.com/forum.php" target="_blank" rel="nofollow"><strong>Real Estate Webmasters forum</strong></a> generated for the &ldquo;<em><strong>Uber Real  Estate Webmaster</strong></em>&rdquo; Members (aka &ldquo;Kool Aide Drinkers&rdquo;). I targeted a Members  website that primarily only had REW inbounds. This <strong>REW Member</strong> joined back in  2005 and had in excess of 1,100 posts and a multitude of blog posts. The Member&rsquo;s  website displays a dismal PR1 for all the hard work and effort.</p>
<h3>Conclusion</h3>
<p>Now if the same <strong>REW Member</strong> had  posted over 1,100 blog comments on 1,100 different websites, posted to his/her own Blog the same amount as he/she posted to the REW Blog the Member&rsquo;s PR would be significantly higher. This is a no brainer folks!</p>
<p>Now you can call me bias all you want (and yes I am). But do the <a href="http://www.backlinkwatch.com/" target="_blank"><strong>research yourself</strong></a>. Please don&rsquo;t take my word  for it. Regardless or whether you are a new REW Member or a Kool-Aide drinking &ldquo;<em><strong>Uber  Real Estate Webmaster</strong></em>&rdquo; the <a href="http://www.realestatewebmasters.com/forum.php" target="_blank" rel="nofollow"><strong>Real Estate Webmasters forum</strong></a> is nothing but a huge  waste of your time.</p>
<p>What was most shocking is that Morgan Carey even applies the &ldquo;<a href="http://en.wikipedia.org/wiki/Nofollow" target="_blank"><strong>nofollow</strong></a>&rdquo; tag to REW Clients!</p>
<p>Admittedly, Morgan Carey is one of  the BEST self promoters I have ever come across, however his loyalty is strictly to himself and enjoys the fruit of his Members labor to glorify and promote who?  Not you!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/real-estate-webmasters-not-worth-the-time/feed/</wfw:commentRss>
		<slash:comments>29</slash:comments>
		</item>
		<item>
		<title>Form Creator for WordPress</title>
		<link>http://www.ultimateidx.com/blog/form-creator-for-wordpress/</link>
		<comments>http://www.ultimateidx.com/blog/form-creator-for-wordpress/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 14:38:44 +0000</pubDate>
		<dc:creator>Jared Ritchey</dc:creator>
				<category><![CDATA[WordPress Form Creator]]></category>

		<guid isPermaLink="false">http://www.ultimateidx.com/?p=409</guid>
		<description><![CDATA[WP Forms Creator &#8211; Beta Release Today!
Today we submitted our new WP Form Creator to WordPress for inclusion into the extensions directory and once approved you will be able to download the plugin as a beta application.  This release includes all the foundation features we wanted to add in from the onset of the [...]]]></description>
			<content:encoded><![CDATA[<h2>WP Forms Creator &#8211; Beta Release Today!</h2>
<p>Today we submitted our new WP Form Creator to WordPress for inclusion into the extensions directory and once approved you will be able to download the plugin as a beta application.  This release includes all the foundation features we wanted to add in from the onset of the project so bloggers using our free plug-in can have a way to quickly, easily and effectively add in a fully XHTML compliant forms.  Initially designed as a tool for clients of the UltimateIDX this plug-in will take all of the guess work out of adding compliant forms to your WordPress blog in a simple drag and drop style environment making it super easy to implement. From entry level bloggers to experienced professional designers, the new WP Form Creator makes form creation and design a snap.</p>
<p>Built with the same forethought and planning as our other free plug-ins, we always approach each of these projects with several important questions and a wide range of perspectives before we commit the development.  In that regard, WP Form Creator solves problems. Experience had demonstrated that after looking at literally dozens and dozens of methods for including common forms such as a Competitive Market Analysis or even a basic contact form, were proving to be a challenge and confusing for novice bloggers.  Our WP Form Creator does what no others currently do and that is add in truly easy to create forms and functionality to any blogger regardless of skill level and yet keep it fully XHTML Compliant.</p>
<h3>What is an XHTML Compliant Form?</h3>
<p>Site validation for compliance is more than just a buzzword or trendy way to bolster a coders character or ego (all though it may include such). Compliance standards help designers and developers demonstrate a level of competency and quality by adhering to a preset base line standard of rules for good coding. The XHTML standard as outlined by <a href="http://www.w3.org/TR/xhtml1/" rel="external">W3C</a> states;</p>
<blockquote cite="http://www.w3.org/TR/xhtml1/"><p>
XML was conceived as a means of regaining the power and flexibility of SGML without most of its complexity. Although a restricted form of SGML, XML nonetheless preserves most of SGML&#8217;s power and richness, and yet still retains all of SGML&#8217;s commonly used features.
</p></blockquote>
<p>In essence, XHTML forms are built upon a foundation of structural and semantic tags suitable for authoring well formed documents that can be displayed with relative consistency for all modern browsers. A quick inventory of modern browsers would include all of those that adhere to the standards compliance with exception of Internet Explorer 5, 6, 7 and 8 as Microsoft browsers have never been &#8220;modern browsers&#8221;. To get an idea what XHTML markup for a form looks like, I&#8217;ve generated generated an example for your examination.</p>
<pre class="brush: xml;">
&lt;form action=&quot;action.php&quot; method=&quot;get&quot; id=&quot;wpmcdemo&quot;&gt;
&lt;div class=&quot;row&quot;&gt;
	&lt;label for=&quot;txt_Tryitout!Typethefieldnamesoutfirst,e.g.:&quot;&gt;Try it out! Type the field names out first, e.g.:&lt;/label&gt;
	&lt;input id=&quot;txt_Tryitout!Typethefieldnamesoutfirst,e.g.:&quot; name=&quot;txt_Tryitout!Typethefieldnamesoutfirst,e.g.:&quot; type=&quot;text&quot; /&gt;
&lt;/div&gt;
&lt;div class=&quot;row&quot;&gt;
	&lt;label for=&quot;txt_Firstname&quot;&gt;First name&lt;/label&gt;
	&lt;input id=&quot;txt_Firstname&quot; name=&quot;txt_Firstname&quot; type=&quot;text&quot; /&gt;
&lt;/div&gt;
&lt;div class=&quot;row&quot;&gt;
	&lt;label for=&quot;txt_Surname&quot;&gt;Surname&lt;/label&gt;
	&lt;input id=&quot;txt_Surname&quot; name=&quot;txt_Surname&quot; type=&quot;text&quot; /&gt;
&lt;/div&gt;
&lt;div class=&quot;row&quot;&gt;
	&lt;label for=&quot;txt_Town&quot;&gt;Town&lt;/label&gt;
	&lt;input id=&quot;txt_Town&quot; name=&quot;txt_Town&quot; type=&quot;text&quot; /&gt;
&lt;/div&gt;
&lt;div class=&quot;row&quot;&gt;
	&lt;label for=&quot;txt_State/Region&quot;&gt;State/Region&lt;/label&gt;
	&lt;input id=&quot;txt_State/Region&quot; name=&quot;txt_State/Region&quot; type=&quot;text&quot; /&gt;
&lt;/div&gt;
&lt;/form&gt;
</pre>
<p>Although the full release documentation is yet to be finished you are none the less more than welcome to post questions and issues with this release for assistance.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ultimateidx.com/blog/form-creator-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>34</slash:comments>
		</item>
	</channel>
</rss>
