WordPress There was a small systems error….


Whoops!  There was a small systems error. Please try refreshing the page and if the error is still there drop us a note and let us know.

OR
We’re experiencing some problems on WordPress.com and we are in read-only mode at the moment. We’re working hard on restoring full service as soon as possible, but you won’t be able to create or make changes to your site currently.

WordPress is experiencing some problems and if you use wordpress stats, the new jetpack plugin or any other plugin tied to wordpress.com you will also see this error on your self-hosted wordpress.org sites. 

This will also cause issues with your dashboard view when the stats or other plugin try to load.  The dashboard administrative are will appear smaller and centered on the screen.  WordPress.com is working on resolving the issues 504 and 502 errors and should be back up soon.

Share

Drive Traffic to Your site using Facebook


Once you have a well established WordPress site, you may find your total hits per day has reached a cap. Looking for a way to drive even more traffic to your website? Social Media sources, specifically Facebook offer a free and fun way to get more visitors. Inforats has always been posting links to pages and new posts on our personal sites, but we finally broke down and created a business page.  [Read more...]

Share

Target Real Estate Buyers with WordPress


In today’s economy, many would think that being a realtor is tough.  Yes, the market is not what it use to be, but the opportunity to be profitable and grow your real-estate business is there.  The days of quick sales and large commissions may be over, but now hundreds of financial institutions are looking to list thousands of foreclosed and reposessed properties throughout the United States.  In Brevard County alone, some neighborhoods are all but abandoned.  On a recent trek through Port St. John, Florida, every third home in some neighborhoods were abandoned and up for sale by local banks.  In Melbourne, Florida, some streets, 25% vacancy. 

Financial Institutions are looking to unload these properties, they are excepting offers well under value, and just want to clear their ledger.  By lowering commissions, and concentrating on volume rather than quality, you can begin closing on properties.  As an agent, you need to look at your market and promote your listings.  So how does Web Development and WordPress play into this?  WordPress is a simple to use Content Management System (CMS) that will allow you to easily manage multiple listings online with a few clicks of the button.  Even if you are not a web developer, you can easily login and edit your site to list all your foreclosure properties on the fly.

Identifying Your Target Market.  In today’s economy, the typical home-buyer of a family with 2.4 children looking for a 3/2 or 4/3 does not apply.  Today, home buyers are often in their early 20′s.  Other demographics also include retired-fixed income.  Some retirees that were once renting are now able to afford and be approved for little to no money down loans, and able to secure a new home.  This is your new market.

Reaching Your Target Market.  If you are a registered broker or agent for ReMax, Century21, Coldwell or other large agency you have the MLS and most likely able to create and update your profile and current listings.  Having your own domain and website allows you more control over your listings, will allow you to update and personalize your web presence and will give you complete control on how and when you promote your services. 

With WordPress, you can:

  • Post articles and news regularly to help increase search-based traffic to your site.
  • Easily update and manage website pages and posts.
  • Easily update links, add, or remove images, and change sidebar information
  • Maintainn a professional website as easily as a facebook account!
  • All this for FREE!

And with the Genesis Framework and AgentPress Theme:

  • Manage listings just as you would manage posts and pages within any WordPress site.
  • Visitors can search for your listings easily and quickly
  • Add searchable detailed data such as price, location, residency, bedrooms, bath, etc.
  • Add multiple images and create a slideshow of current properties
  • Search Engine Optimization (SEO) options that allow you to create unique easily indexed pages for visitors to find your listings.
  • An attractive and professional website design.

Check out AgentPress HERE.

Share

Enhanced Search Bar on WordPress


Configuring your WordPress Google SearchA lot of WordPress installations and themes will include a search widget, allowing visitors to search your site for specific content. There are also a half-dozen WP plugins available as well which allow for advanced settings and options of your search code. With all the available search plugins, I still prefer Google Site Search which is easily the most powerful search tool out there, especially with content search. Adding a working search engine to your site helps keep visitors on your website, helps increase sales and turn-over for product search, and allows you to customize and tailor search results for look and results. The only draw back is if you want the ad-free version, there is a fee involved. So why not set up an enhanced Search tool that pays you? Setup a Google AdSense account and you can utlize on-site customizable search, ad-supported, and get paid for click throughs to sponsors.

There are 2 elements to configuring your Google Search:  The Search Bar, and the Search Results. Configuration is done through your Google AdSense, and additional tweaking can be done at the code level:

  1. For this example, Create a page on your WordPress site called ‘Search’
  2. Login to your Google AdSense account.  Select the ‘AdSense Setup’ Tab.
  3. Select AdSense fo Search.
  4. Select ‘Only sites I select’ under Search Type.
  5. Enter the URL of the sites you wish to include in your search results.  If you maintain multiple websites and want results for all of them displayed, you can customize those options here.
  6. Select other options such as keywords, language, etc. and click ‘Continue’
  7. Select the look and feel of the search bar.  By default the selection has the Google text within the toolbar text area.  If you select another optional appearance, you can change the background to match the background css of the area you place the search bar later.  Just select the one that closely matches your website for now.
  8. Select Text Box Length, and click “Continue’.
  9. Now you can select where you want your search results to appear.  I recommend ‘Open results within my own site’ and enter the address of a page you’d like to use for search, i.e:  ‘http://www.inforats.com/search’
  10. By default, ‘Enter width of search area’ is set to 800px.  If your content area is smaller than 800, you can change this later to fit your WordPress site.
  11. Select your add locations and then customize the results to match your website.  The closer it is and more natural it appears will increase chances of clicks-throughs to displayed advertisements.  Click ‘Continue’
  12. Check the radio button and name your Search Campaign.  Click ‘Submit and get Code.”

Now you should have 2 snipets of code to drop into your site.  The ‘Search Box Code’, and the ‘Search Results Code’.

Search Box Code.  You can place this code in your sidebar in a Text/html widget, at the top of pages or posts, or any other widgetized area.  On Inforats, the search bar is placed in the header-right widgetized area using the Genesis Framework and on the search page itself.  If you selected one of the codes that use a background color, you can change this color to match your css by changing this line:

<div style=”background-color:#000000;color:#FFFFFF”> 

Example, to make the google search background transparent:

<div style=”background-color:#transparent;color:#FFFFFF”>

Search Results Code.  Go to edit your search page and drop this code in.  The width or size set by default is 800px.  You can adjust this by editing the following line:

var googleSearchFrameWidth = 800;

Example,on inforats, the width was adjusted to 625px to fit:

var googleSearchFrameWidth = 625;

Share