to enable this feature into application\config\cms_config.php add:
$config['alt_enabled'] = TRUE;
After that you can edit links clicking on edit button for images, example:
Example issue:
Message: mysqli::real_connect(): Headers and client library minor version mismatch. Headers:50550 Library:100029
Sounds like server issue. PHP and MySQL versions not compatible.
Try this solution: https://stackoverflow.com/questions/10759334/headers-and-client-library-minor-version-mismatch
If this is localhost try with:
frontend is a bit special controller you should not add new methods there
better to use test.php or api.php controller
One client turns out this script isn’t compatible with Varnish caching on servers. So if you experiencing issue with strange logout on SAVE or similar, try to disable this feature on your server.
Thanks
To change timezone:
list of supported: http://php.net/manual/en/timezones.php
Example for using custom date format on property.php template file:
<?php if(!empty($estate_data_option_37)): ?>
<p class="bottom-border">
<strong>Date:</strong>
<?php $date_variable = $estate_data_option_37; ?>
<?php echo date('j F Y', strtotime($date_variable)); ?>
</p>
<?php endif;?>
PHP documentation for date function: http://php.net/manual/en/function.date.php
37 is example field ID #, can be found in Admin->{listings}->fields
Because of some performance troubles (loading time increasing with more markers based on client network speed) we added limit to 100 markers on map in search, this can be changed by following hint image:
Example, what you can put into template files:
<?php if($lang_code == 'hr'): ?>
ga('linker:autoLink', ['website.hr']);
<?php elseif($lang_code == 'en'): ?>
ga('linker:autoLink', ['website.en']);
<?php elseif($lang_code == 'de'): ?>
ga('linker:autoLink', ['website.de']);
<?php endif; ?>
Template compatible with our real estate script and also other scripts.
Can be purchased here: https://themeforest.net/item/classified-place-classified-multipurpose-template/19165145
Thanks
Foursquare import tool, import events to existing real estate, classified or city guide portal.
Price: 20 EUR + VAT (if applicable)
If you are interested for this module please send me message to email: sanljiljan@geniuscript.com
Example screenshot:
Addon is compatible with script version >= 1.6.0
Support for XML compatible with XML2U standards: http://www.xml2u.com
Price: 30 EUR + VAT (if applicable)
If you are interested for this module please send me message to email: sanljiljan@geniuscript.com
Screens:
If you have very custom xml, not xml2u compatible, some customization hints:
For example if you don’t want to show message for listing limitation, Continue reading
Some PHP knowledge is required!
You can customize related view and controller file: http://iwinter.com.hr/support/?p=1288
Example:
To use this feature, you should enable location sharing in your browser:
If you already click on never share then this feature will not work in your browser.
In that case you can reinstall your browser / reset your browser settings or google for solution like “enable location sharing in google chrome”
Classified, CityGuide, Real estate compatible addon
Available on codecanyon: https://codecanyon.net/item/real-estate-compare-listings/19208331
1. Create database
Save this DB details
2. Upload script zip file via ftp to your domain public_html directory, rename it to script.zip
Extract this file: autoinstall and upload autoinstall.php also into public_html directory.
Start this autoinstall file directly from browser, link like:
http://your-website-domain.com/autoinstall.php
Of course, change your-website-domain.com with your real domain
After that open http://your-website-domain.com
Now you are ready to install script:
Save provided details and open your website:
We build search form and algorithm based on standard search logic. But this can also be customized.
PHP + MySQL knowledge is required for this.
Related file where algorithm can be found: application\models\estate_m.php , method filter_results
Example how to ignore all other fields when visitor search from smart search / location input field:
With Firefox developer console (CTRL+Shift+K) you can detect field names used in this search algorithm, example:
If you need some customization’s services, please follow this guide: http://iwinter.com.hr/support/?page_id=1870
In template files code, images are dynamically generated this way, example with function _simg:
<img src="<?php echo _simg($file['url'], '470x311');?>"