Category Archives: Real estate agency portal

Grid or Columns number on results

Each template is designed for different columns num in row which best suits design so we suggest to purchase design with wanted number of columns.

You can also customize if you are familiar with basic coding, in our script hints:

You should find all template files with result listings, some hints: http://iwinter.com.hr/support/?p=5891

After that, example for widget from classified template:

screenshot_2

Same thing in results.php template file (used for ajax calls)

screenshot_3

And in result_item, changes is also required:

screenshot_4

Example for 4 columns:

screenshot_3

 

 

Forbidden issues, youtube link

On some servers with mod_security users experienced forbidden issue when ad youtube link to content or form submission.

This can also happen with any other content when mod_security recognize as “unsecure”, and it can even block your IP completely and you can’t access website anymore.

To solve this issue your server admin must disable mod_security or add some rules to enable links submission via form.

Regarding hosting providers, my scripts are tested and work perfectly on:

a2_hosting_logo

PDF and characters issue

For pdf functionality you need PDF addon. If not included in your script can be purchased here:

https://codecanyon.net/item/real-estate-pdf-export/21264560

PHP PDF library only supports croatian and english characters. Customizations for other langauges can be added in application\libraries\Pdf.php

Hints:

screenshot_3

If you found solution for your language will be nice if you can share it with us so we can integrate it into future updates. ( NOTE: You will receive free gift from us ;-) )

Thanks

 

SPAM issues, captcha configuration

Some users complaining on SPAM issues, even when using standard captcha. We implemented recaptcha for this case in v1.5.9

Guide:

  1. Update script to min. v1.5.9, guide to update is available on bottom of item page where you purchased product, and can be downloaded on same place as you download product
  2. Get your recaptcha keys on page: https://www.google.com/recaptcha
  3. Insert recaptcha keys in application\config\cms_config.php:
    $config['recaptcha_site_key']   = "your-site_key";
    $config['recaptcha_secret_key'] = "your-secret_key";

Also your server should have in php.ini or recaptcha will not work properly:

allow_url_fopen = On;

Standard captcha is supported from v1.4.9 and is included by default: http://iwinter.com.hr/support/?p=54

Google Maps API error on Portal

Quick solution:

  1. Update script to latest version v1.5.9
  2. Get you Maps API key from Google: JavascriptAPIKEy
  3. In Admin->Settings->System settings enter your “Google Maps API key”

Description and changes in older script versions:

From 22 June 2016,  Google blocking GoogleMaps libraries all new domains and some old.

Usage limits description: https://developers.google.com/maps/documentation/javascript/usage

Continue reading

Open search results on another page?

Something like this is not supported and additional coding is required.

If you are not familiar with coding, please follow this guide: http://iwinter.com.hr/support/?page_id=1870

Customization hints for your developer:

Script version >= 1.5.9:

In your cms_config.php add:

$config['search_listing_page'] = 2;

where number 2 represents page ID where you wish to show results. Of course this page should have template which showing results or it not be visible.

For older script versions:

templates\{your-template}\widgets\head.php, customize javascript function manualSearch, it is triggered when user click “search” button and contains all parameters.

You should develop redirect to another page, with search json for api, details: http://real-estate.iwinter.com.hr/documentation/#!/public_api_rss

Example:

example-redirect