Advertisement:

Author Topic: Refurbished Real Estate Theme  (Read 20517 times)

thedon

  • Sr. Member
  • ****
  • Posts: 341
Re: Refurbished Real Estate Theme
« Reply #45 on: October 19, 2013, 08:11:04 pm »
I have found your problem and it is similar to pablo22 above. This is how to correct it

Go to your item.php and find

Code: [Select]
<a href="#" class="ui-button ui-button-gray js-submit"><?php _e("Send"'realestate');?></a>
Replace it with

Code: [Select]
<button type="submit" class="button"><?php _e('Send''realestate'); ?></button> then let me know if it works

worked a treat ya beauty  ;) ;)

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #46 on: October 19, 2013, 08:14:03 pm »
Great.  8) 8) 8)

thedon

  • Sr. Member
  • ****
  • Posts: 341

thedon

  • Sr. Member
  • ****
  • Posts: 341
Re: Refurbished Real Estate Theme
« Reply #48 on: October 20, 2013, 01:18:17 am »
sorry for double post

how to add text (Featured ads) just above see pic and how can it show more than 4 items please


AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #49 on: October 24, 2013, 04:55:52 am »
Which version of osclass are you using?

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #50 on: October 24, 2013, 09:28:17 pm »
Hello oscameza. I am using OSClass 3.2.1. Please try a clean install of OSClass 3.2.1 then add the theme and the plugin. My guess is that the problem could not be with the theme or plugin because your error points to a core file. Also, you are the first person pointing out an issue to do with installing the plugin, an issue which the previous users did not. Please clean install OSClass.

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #51 on: October 24, 2013, 11:14:11 pm »
here

Got them. Will let you know what I find

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #52 on: October 24, 2013, 11:29:34 pm »
Que se ha observado. Gracias.

sugeshrajs

  • Newbie
  • *
  • Posts: 35
Re: Refurbished Real Estate Theme
« Reply #53 on: October 25, 2013, 11:53:15 am »
Dear AdNet,

Please help me to do the item preview using lightbox.  I have updated so many changes to the files in the theme.  So it is difficult to change the entire theme files.  All other updations has been made in my website (http://www.keralarise.com/).

Please tell me, which are the files that is affected while changing the item preview using lightbox.  And what are the codes used in it.

I tried a lot but  its all failures.

Thanks and Regards,

Sugesh Raj
www.keralarise.com

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #54 on: October 25, 2013, 12:51:34 pm »
Hello sugeshrajs,

Please send me your theme and I will add the lightbox for you.

sugeshrajs

  • Newbie
  • *
  • Posts: 35
Re: Refurbished Real Estate Theme
« Reply #55 on: October 28, 2013, 03:30:09 pm »
Hi,

Is there any provision to search the item by item id in this theme.  Please help me to do this.

For every item in the last of the url the item id is showing.

(eg:http://keralarise.com/houses-villas-for-rent/house-first-floor-for-rent_i1478). This i1478 is the id.

Is there any provision to search for this id.  I want to make my side ID search also.  While i search this in the normal search bar, it is not showing anything.

If there is any provision please help me.

Thanks & Regards,

Sugesh Raj S

AdNet

  • Jr. Member
  • **
  • Posts: 62
Re: Refurbished Real Estate Theme
« Reply #56 on: October 28, 2013, 03:44:38 pm »
To search by Item Id. Place the following code where you want it to appear. Input your item id and it will return the results

Code: [Select]
<form method="get" action="index.php?" onsubmit="return(this, 'index.php?');"><input type="hidden" name="page" value="item"><input type="hidden" name="id" value="Search">Listing ID: <input size="5" type="text" name="id"><input type="submit" value="Search" class="button"></form>

sugeshrajs

  • Newbie
  • *
  • Posts: 35
Re: Refurbished Real Estate Theme
« Reply #57 on: October 28, 2013, 07:38:12 pm »
Dear AdNet

Thanks for the reply.  Can we add this to the home main search item in the home page.  Actually my requirement is to add the listing ID field with the available text box using for search and use the same search button to all searches.  Is it possible.

This code is working but it enables two search buttons in the home page.

Expecting your kind reply

Sugesh Raj S

pablo22

  • Newbie
  • *
  • Posts: 27
Re: Refurbished Real Estate Theme
« Reply #58 on: October 30, 2013, 05:02:45 am »
I got another suggestion for you real estate attribute. When an option is not submitted can it stay hidden.
for example: no floor number was selected can it stay blank instead of showing floor number: 0?
That'd be great

deniss

  • Jr. Member
  • **
  • Posts: 59
  • Try to learn but with a low IQ it's very hard
Re: Refurbished Real Estate Theme
« Reply #59 on: October 30, 2013, 10:26:10 am »
Thanks that works 100%, all magic to me! Thanks.

Okay. Here is the solution.

In main.php, find

Code: [Select]
<div id="latest-ads">     
<?php if( osc_count_latest_items() == 0) { ?>

and replace it with

Code: [Select]
<div id="latest-ads">     
<?php osc_reset_latest_items(); ?>         
<?php if( osc_count_latest_items() == 0) { ?>

What was missing was the <?php osc_reset_latest_items(); ?>   just before the <?php if( osc_count_latest_items() == 0) { ?>

Please let me know if that solves the problem