Category Archives: Customizations

Customizations related to Real estate agency portal

Geo SVG maps supported in Classified script

More then 150 Geo SVG maps included for many countries included directly in script

NOTE: If you need geo map, change widget on homepage and generate wanted map via admin ->listings->Neighborhoods->Generate geo map

If you want to add your custom SVG map, it’s not so easy but possible, guide: geo-location-guide

Guide for our WordPress Themes/Plugins SVG maps: http://listing-themes.com/nexos-wp/docs/img/desc2/svg_map_wp.pdf

From script v1.6.0 we added support for even more maps (> 260 additional maps) https://www.amcharts.com/svg-maps
For support Just download new map in folder “templates\boomerang\assets\svg_maps”

List:

World
USA
Europe
Africa
Afghanistan
Albania
Algeria
Andorra
Angola
Anguilla
Antigua and Barbuda
Argentina
Armenia
Australia
Austria
Azerbaijan
Bahamas
Bangladesh
Barbados
Belarus
Belize
Benin
Bermuda
Bhutan
Bolivia
Brazil
Brunei
Bulgaria
Burkina Faso
Burundi
Cambodia
Cameroon
Canada
Cape Verde
Central African Republic
Chad
China
Colombia
Comoros
Costa Rica
Croatia
Cuba
Cyprus
Côte d’Ivoire
Democratic Republic of the Congo
Djibouti
Dominica
Dominican Republic
Ecuador
Egypt
El Salvador
Equatorial Guinea
Eritrea
Estonia
Ethiopia
France
Gabon
Georgia
Germany
Ghana
Greece
Greenland
Grenada
Guatemala
Guinea
Guinea-Bissau
Guyana
Haiti
Honduras
Hungary
Iceland
India
Indonesia
Iran
Iraq
Ireland
Israel
Italy
Jamaica
Japan
Jordan
Kazakhstan
Kenya
Kyrgyzstan
Laos
Lebanon
Lesotho
Liberia
Libya
Liechtenstein
Lithuania
Luxembourg
Macedonia
Malawi
Malaysia
Mali
Mauritania
Mexico
Moldova
Mongolia
Montenegro
Montserrat
Morocco
Mozambique
Myanmar
Namibia
Nauru
Nepal
Netherlands
New Caledonia
New Zealand
Nicaragua
Niger
Nigeria
North Korea
Norway
Oman
Pakistan
Panama
Papua New Guinea
Paraguay
Peru
Poland
Portugal
Qatar
Republic of Congo
Romania
Russian Federation
Saint Kitts and Nevis
Saint Lucia
Saint Vincent and the Grenadines
Saudi Arabia
Senegal
Serbia
Sierra Leone
Singapore
Slovakia
Slovenia
Solomon Islands
Somalia
South Africa
South Korea
Spain
Sri Lanka
Sudan
Suriname
Swaziland
Sweden
Switzerland
Syria
Taiwan
Tajikistan
Tanzania
Thailand
The Gambia
Togo
Trinidad and Tobago
Tunisia
Turkey
Turkmenistan
Uganda
Ukraine
United Arab Emirates
United Kingdom
Uruguay
Uzbekistan
Venezuela
Yemen
Zambia
Zimbabwe

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

 

 

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

 

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

 

Visual search form builder tricks

If you using template which support visual search form builder like:

Property Listing and Hotel Booking Portal #02
Real Estate Retro Template #03
Horse Market Sell & Rent Portal

You can customize forms by guide:

http://geniuscript.com/wbooking/user_guide_theme/#!/custom_search_form

But if you wish for example split row into 3 columns or add custom css class then you can add it also:

split_example

then depend on bootstrap version or custom classes you can add for example “bootstrap3″:

Screenshot_1

More detail about bootstrap grid system:

http://www.w3schools.com/bootstrap/bootstrap_grid_examples.asp

Search by specific price related to purpose

By default search by price works based on defined purpose “Sale “or “Rent”

By default Sale price is used, field ID #36

If user select purpose which contains word “Rent” then field ID #37 (Rent is used)

Only Rent price (excl.) is used for search, other is only used for information, to show on property preview page.

If you want to add new prices for search or customize this functionality, probably you should look into application\controllers\frontend.php, ajax method, code inside comment block:

/* Define purpose */
/* End define purpose */

Currently there is code to automatically change from sale price to rent if user select purpose which contain word “Rent”. You should do same thing for your new price/purpose.

Also don’t forget to enable filtering for your new price field in administration, guide: http://iwinter.com.hr/support/?p=5804

If you are not familiar with PHP I can provide customization for you (cost additional). Details: http://iwinter.com.hr/support/?page_id=1870

Related posts:

http://iwinter.com.hr/support/?p=322

http://iwinter.com.hr/support/?p=5804