WP Pro Real Estate

by contempoinc

Show:

wildbugsays

Purchased

Hi, I’ve been using this theme for a while but just found out it only displays 10 listings max per category. For example, on this page (Seeking Housing category) it shows 10 listings even though I input 26 listings in the Admin panel. Help! http://mcssafehomes.com/?cat=37

Thanks!

Posted 23 days ago

bobzurowskisays

Purchased

I got it all to work, VERY NICE , except the search navigation:

“Find a Home” and “Contact Us” on the home page.

check it out at http://my-real-estate.biz/

Any suggestions how to fix this?

Bob

Posted 20 days ago
Author

contempoinc contempoincreplied

Not quite sure what you’re asking everything seems to be working correctly?

Posted 20 days ago
Purchased

Default-user bobzurowskireplied

In the dark blue section on the top right, just below “Start Your Search” there are two button for searching. In your demo the text on the left button reads “Find a Home” and the button on the right reads ” Contact Us”. The buttons are peachy colored. In my site the text is not appearing. In your demo there is a slight color change as the mouse hovers the button.

Bob

Posted 20 days ago
Author

contempoinc contempoincreplied

Looks like you got it sorted, Cheers.

Posted 20 days ago

geeproductionssays

Purchased

Hi there,

I really like it but I’m having trouble with setting up the “blog” category and page. Take a look so you know what I mean (P o s e i d o n P r o p e r t y. com – no spaces)

When I post an article on the blog it shows up in the listings, why? I know I’m doing something wrong. Your feedback will be very appreciated.

THanks

Posted 20 days ago
Author

contempoinc contempoincreplied

You need to set the categories in the Admin Options panel

Posted 20 days ago

geeproductionssays

Purchased

Is there a way to make the Menu “Drop Down” ?

Posted 20 days ago
Author

contempoinc contempoincreplied

The theme isn’t drop down enabled out of the box but you could easily add them if needed.

Posted 20 days ago

geeproductionssays

Purchased

Any ideas on how to do the Drop down menu?

Thanks!

Posted 20 days ago
Author

contempoinc contempoincreplied

Take a look at Superfish

Posted 20 days ago

taylor9404says

Can a user search the listings by City or State?

Posted 18 days ago
Author

contempoinc contempoincreplied

The theme uses the default Wordpress search, which doesn’t currently search on custom fields unfortunately.

Posted 18 days ago

geeproductionssays

Purchased

Thanks!

Is there anyway I can add text (contact info) to the left sidebar like these guys did?

http://www.dallashomesonline.net/6718-springwood-lane/

Posted 18 days ago

geeproductionssays

Purchased

Thanks!

Is there anyway I can add text (contact info) to the left sidebar like these guys did?

http://www.dallashomesonline.net/6718-springwood-lane/

Posted 18 days ago
Author

contempoinc contempoincreplied

Yes, I’m guessing they hard coded that into sidebar.php

Posted 17 days ago

geeproductionssays

Purchased

Thanks!

Posted 17 days ago

apolo7406says

Purchased

Excuse my english and I want you to help me solve some problems, the images do not load in website my version of wordpress 2.9.2 and my php is version 5 follow step 7, A) Once your photo is uploaded while still in the “Add and Image” window you’ll notice the “Link URL ” field copy this URL and click “Save all changes” at the bottom of the window. B) Once back in the Write Post panel scroll down until you see the “Image” section, paste the URL you just copied in the URL field and enter a description in the second field. but nothing happens my site is http://costamaya-mahahual.com/es Any suggestions how to fix this? Apolo

Posted 17 days ago

claudiomendoncasays

Purchased

Hello, things are starting to work right here. I’d like to make some minor layout changes. I want to use a logo a little bigger than the one you used. I searched the style.css file for the height of the top header div, but i couldn’t find it. Could you help me out on this?

I’m also trying to change the color of the text in the home intro section ( right below “Start your Search”, but I couldn’t find the correct css for it. Any clues?

Another thing I’m trying to figure out, is the category structure that I need to use, in order for the listings to work. Could you explain that for me?

Thank you a lot

Thank you a lot.

Posted 17 days ago

kyle123says

Purchased

Hi there, I can’t seem to get the image viewer on the post page working. It displays all of the images in a row down to the bottom of the page and neither of the scroll clickers work. Any idea why? All the javascript is in place.

This is the error I’m getting in the javascript console: $(”#imagesnav”).jFlow is not a function

Thanks!

Posted 14 days ago
Author

contempoinc contempoincreplied

Have you added any plugins, sounds like a javascript conflict.

Posted 13 days ago
Purchased

Default-user kyle123replied

A few, but I disabled them all and got the same issue. If you’re on right now you can take a look at http://sg-realty.com

This is the complete error: $(”#imagesnav”).jFlow is not a function next: ”.jFlowNext” // must be class, use . sign

Posted 13 days ago
Purchased

Default-user kyle123replied

Disregard, I think I got it up and running. Seems it was conflicting with superfish in developing the drop down menus. Thank you for the quick response though! Great theme.

Posted 13 days ago

nadrifilozofsays

Purchased

I have just started to use this template again, and think that it is quite good but I have one trouble which is quite serious for me. Namely, Built-in Google Maps are jumping to USA although I want to put it on Croatia! I fill name of the city, postal code but nothing!

Could you please help me with that? What is going on?

I would be most obliged for any assistance you may be ready to offer!

Best regards

Posted 12 days ago
Author

contempoinc contempoincreplied

You’ll most likely need to add another custom field for the country, this can be done through the functions.php file you’ll see an array at the top > then you’ll need to echo this field out inside of single.php on line 84

Posted 12 days ago

nadrifilozofsays

Purchased

Thank you for your quick response. I’ve done the first thing (add the field for the country) but I’m not deep enough into this to make the following. I see that there in single.php is something abour google maps, but what do I have to do there? Line 84? I would need this only for Croatia – should I erase all od US states there in functions.php?

Sorry on my low knowledge about this but if you could be so kind to help – that would be great.

I would be most obliged for any assistance you may be ready to offer.

Br

Posted 11 days ago
Author

contempoinc contempoincreplied

You’ll need to add another echo statement in line 84, something like the below:

<?php if(get_post_meta($post->ID, "city_value", "state_value", "zip_value", "country_value", $single = true) !="") : ?><?php echo get_post_meta($post->ID, "city_value", $single = true); ?>, <?php echo get_post_meta($post->ID, "state_value", $single = true); ?> <?php the_title(); ?>, <?php echo get_post_meta($post->ID, "zip_value", $single = true); ?> <?php echo get_post_meta($post->ID, "country_value", $single = true); ?><?php endif; ?>

This new line of code will only work if you named your new field in functions.php “country”

Posted 11 days ago

rancecostasays

Purchased

Thanks for the help earlier with the theme. I’ve hacked it for use by a building management company here in LA. They’ve got 4 properties and over 127 units that are constantly in and out.

They are very happy with their result. Thanks very much for this theme!

http://www.hmmyapartments.com

Posted 10 days ago
Author

contempoinc contempoincreplied

Not a problem, thanks again for your purchase.

Posted 10 days ago

ClickCIsays

Purchased

Hi, love the plate :) However, I am having serious issues with the image files & google maps image – ‘Image coming soon’ is ever present on the areas where my images should be displayed; i have already changed the permissions on the cache as you indicated in the FAQ -

When I am adding new properties, is there a minimum or required picture size? I noticed on the theme settings, there is a size requirement for the custom logo file (302×62) & large image url (630×314). Also, I still have yet to be able to display the google map (even after re-posting the API key several times) – any idears?

Posted 10 days ago
Author

contempoinc contempoincreplied

Could you post a link to your installation so I can take a look. You checked all the items in the FAQ , right? Images you upload should be larger than 630×438. Make sure that you’re entering the complete address information in the same format as you see in the demo site.

Posted 10 days ago

sodagornsays

Hello, how easy is it to put in a different main image? The house for instance? Can it be easily replaced?

Also I want to use this for a CMS website for a building inspector, so it will show things such as services etc, not home listings. Is it easy to shut these off?

Thanks!

Posted 9 days ago
Author

contempoinc contempoincreplied

You would need to swap the image out in page.php

For the categories you would just need to exclude them from the nav by modifying the wp_list_categories tag

Posted 8 days ago

ClickCIsays

Purchased

Do you know if the ‘formidable’ plugin works with this template? I wanted to ask before installing it

Posted 8 days ago
Author

contempoinc contempoincreplied

Not familar with that plugin so I couldn’t say

Posted 8 days ago

sawafaminsays

Purchased

Why is the image on static pages hard coded?

Did you really think that people wouldn’t want to be able to customize that?

Posted 7 days ago

claudiomendoncasays

Purchased

I have been tweaking the theme for my business, and it has worked very well. but I couldn’t find out what is the category scheme that i should use in order to see them at the sidebar. I supose the categories will be shown at the sidebar at single page, category listing and search listing. When I push the “Find a Home” button it shows a list, but no categories are shown at the sidebar. Do I have to make sub-categories?

Thank you in advance.

Cláudio

Posted 7 days ago
Author

contempoinc contempoincreplied

Please refer to the documentation it shows the category structure that needs to be setup, also be sure that you’ve assigned all the categories in the Real Estate Options panel.

Posted 7 days ago

andertracksays

None of my images are displaying, just the alt text. I have done chmod 777 for img_resize and have confirmed that GD library is running.

Site is trentonrealestateagent.com

Posted 6 days ago

andertracksays

Turns out it was my host (Host Gator) They are running mod_sec rules on their server, so you have to ask them to allow timthumb to run.

It is detailed in this series of posts:

http://code.google.com/p/timthumb/issues/detail?id=8

Posted 6 days ago

ClickCIsays

Purchased

is there any way to add a contact form? Formidable did not work – anybody else know of any plugins that have successfully run in this theme’s environment?

Posted 6 days ago
Author

contempoinc contempoincreplied

Try replacing your style.css with this, I’d also recommend trying the Contact Form 7 plugin

Posted 6 days ago

andertracksays

I am also wondering about the contact form. I tried Contact Form 7, but it did not format correctly at all.

See: http://trentonrealestateagent.com/contact/

Posted 6 days ago
Author

contempoinc contempoincreplied

Try replacing your style.css with this

Posted 6 days ago

Default-user andertrackreplied

I have already modified the existing css file quite a bit, so can you tell me what part specifically I have to change?

Posted 6 days ago
2 More Replies

Default-user andertrackreplied

I fixed it (in a way) by using

|

within the contact form configuration where I needed an extra line of space

Posted 5 days ago

ClickCIsays

Purchased

thanks again, guyz, ContempoInc rulz :)

One last thing – I have tried endlessly to have only certain listings show up under ‘New Lisitngs’ on the homepage, yet everytime I add an old listing, it automatically come on top – I have already labeled the ones that I want to remain as ‘sticky’ to no avail :(

Any idears how to remedy this?

Posted 4 days ago
Author

contempoinc contempoincreplied

Thanks, by default the “New Listings” area shows the latest posts made, you’ll need to modify that loop to show sticky posts instead. Take a look at this

Posted 4 days ago

wklangsays

Purchased

Hi Chris,

Excellent theme! I’m also having the well-discussed image problem for listings/thumbnails. I’ve sent you a PM here on ThemeForest.

The url is http://myrtlegrovevillage.com

I’ve checked the usual suspects: GL Library, 777 Folder permissions, HostGator issue with mod_security, etc.

Thanks, Will

Posted 4 days ago
Author

contempoinc contempoincreplied

Email sent

Posted 4 days ago

ClickCIsays

Purchased

found the loop:

<?php $blogcategory = get_option(‘ct_blog_category’, $single = true); ?> <?php global $post; $recentpost = get_posts(‘numberposts=3&category=-’.$blogcategory); foreach($recentpost as $post) : ?>

I tried Justin’s work around to no avail :(

do I need to customize the calls in the loop at all to match with Justin’s workaround?

Posted 3 days ago
Author

contempoinc contempoincreplied

Sorry I can’t help to much since this falls into the customization side of things. Hope you understand.

Posted 3 days ago

invinceiblesays

Purchased

How can I create a new page without it showing in the top-right navigation?

Posted 1 day ago

$27

Prepaid customers
pay just $25 - how? Prepay Your Account With our deposit system not only will purchasing be much faster, but we’ll also take $2 off the price! Find Out More Price

You must sign in or sign up to purchase this item.

12345 ( 104 ratings )

Purchase 483 purchases

contempoinc

contempoinc

Exclusive Author Item was Featured Author was Featured Author had a Free File of the Month Referred at least one person Helped protect Envato Marketplaces against copyright violations Repeatedly Helped protect Envato Marketplaces against copyright violations Sold between 10 000 and 50 000 dollars Bought between 1 and 9 items United States
File Types Included
CSS Files HTML Files JPG Image JS Files Layered PSD PHP Files
Item Attributes
Created 12 December 08
WordPress Version 2.9
Columns 2
Widget Ready No
Functionality CMS
Layout Fixed
Documentation Well Documented
Compatible Browsers FireFox 2, FireFox 3, IE6, IE7, IE8, Safari
ThemeForest Files Included CSS Files, HTML Files, JPG Image, JS Files, Layered PSD, PHP Files
Collections that include this item