packages

Packages subscriptions module

With packages module you can define packages subscription price, limit number of listings, number of days for package expiration, number of amenities, number of uploaded images per listing, num of free featured properties, auto activation for specific package.

You can also define different package for USER (frontend agent) and different for AGENT (backend agent).

Price: 30 EUR + VAT (if applicable)

If you are interested for this module please send me message to email: sanljiljan@geniuscript.com

 

Num of free featured properties feature description:
If specific user have  specific package enabled, it will have limit for free featured some of their properties.

Screens attached:

How to add more results items per page?

For standard result items:

In: templates\bootstrap2-responsive\config\template_config.php

$config['per_page'] = 8;

For agents pagination:

$config['per_page_agents'] = 6;

In older script versions:

In application\config\cms_config.php you can change above code.

For other foreach loops example:

This will only limit results, so other will be hidden.

screenshot_5

 

How to remove map, slider and search?

In version >=1.5.4:

Admin->Pages->Edit->change header template

In versions <=1.5.3:

Can be done with wanted template file customizations, just remove part of code that showing map/slider/search, for example on classic page_page.php located in folder: templates\bootstrap2-responsive, remove this part:

<input id="pac-input" class="controls" type="text" placeholder="{lang_Search}" />
<div class="wrap-map" id="wrap-map">
</div>

{template_search}

How to backup via cpanel?

Auto-backup via cpanel:

1. Login to your cpanel

2. Backups->Download a Full website backup

Manual-backup via cpanel or similar tool:

1. Login to your cpanel

2. (Backup database) Go to phpMyAdmin, select database, export:
phpmyadmin

3. (Backup files) Go to file manager from cpanel dashboard:
file-manager

Select folder where script is installed, all files inside and archive

file-manager-2

Download compressed file:
Screenshot_4

 

 

Custom import script guide

Import is a big problem, because all systems are different, don’t support same fields/parameters/languages, database structure is different, export formats also. So there is no universal solution for this. I will try to help you with building import bridge script here. (SQL/PHP/XML/CodeIgniter Skills are required).

Lets say that you already have your data in some PHP array or object (this fully depends on your custom data).

Now you want create bridge script that will import this data into real estate script database.

Continue reading