We’re currently experiencing a high volume of inquiries and our response time could be up to 2 days. We apologize for the delay, and thank you for your patience. Our available time: 2 AM - 1 PM (Monday - Friday) (UTC+0 Timezone).

Okay
  Public Ticket #2487197
related to issues
Closed

Comments

  • proprangers started the conversation

    1. I just checked and found that there is no filter for CITY ? Am I correct or there is any setting for it ?

    2. How can I configure email through SES. Is it possible ?


  •  2,562
    Support replied

    Hi,

    1. Yes, there's no filter for city.

    2. We can't setup email using SES from admin panel now. We will add it in the next version 2.10 (it will be released on 05 August)

    Thanks!

  • proprangers replied

    Dear, 

    I hope you understand that following few issues/features are standard features of a real estate site and you should add them in your forthcoming update.

    1. Default property image. This will improve the UI of the app.

    2. Adding more fields in the filters, specially CITY.

    3. Add facility of adding agents for a project. Presently we see only a contact form ( of admin ) and no image or details of any agent whom user should contact for that particular project.

    Thanks

  •  2,562
    Support replied

    Hi,

    We will think about it.

    Thanks for your suggestion.

  • proprangers replied

    How to change the STATUS field ( add new or edit any ) , which appears during form of projects.

  •  2,562
    Support replied

    Hi,

    There is no option to add/edit project statuses from admin panel, it's fixed from code.

    You have to modify source source code in platform/plugins/real-estate/src/Enums/ProjectStatusEnum.php 

  • proprangers replied

    Thanks.

    I will not edit any constant but need to add 3-4 constants. Will it affect any functionality ?

  •  2,562
    Support replied

    Add more constants is fine. It won't break our app.

    If you modify any existed constants, you also need to update that value in table re_projects to make it work.

  • proprangers replied

    This is what I did. But the site gives 404 error.

    My site is at www.propingurugram.com


    ------------

    <?php

    namespace Botble\RealEstate\Enums;

    use Botble\Base\Supports\Enum;
    use Html;

    /**
     * @method static ProjectStatusEnum NOT_AVAILABLE()
     * @method static ProjectStatusEnum PRE_SALE()
     * @method static ProjectStatusEnum SELLING()
     * @method static ProjectStatusEnum SOLD()
     * @method static ProjectStatusEnum BUILDING()
     */
    class ProjectStatusEnum extends Enum
    {
        public const NOT_AVAILABLE = 'not_available';
        public const PRE_SALE = 'pre_sale';
        public const SELLING = 'selling';
        public const SOLD = 'sold';
        public const BUILDING = 'building';
        public const UNDERCONSTRUCTION = 'under_construction';
        public const READYTOMOVEIN = 'ready_to_move_in';
        public const NEWLAUNCH = 'new_launch';

        /**
         * @var string
         */
        public static $langPath = 'plugins/real-estate::project.statuses';

        /**
         * @return string
         */
        public function toHtml()
        {
            switch ($this->value) {
                case self::NOT_AVAILABLE:
                    return Html::tag('span', self::NOT_AVAILABLE()->label(), ['class' => 'label-default status-label'])
                        ->toHtml();
                case self::PRE_SALE:
                    return Html::tag('span', self::PRE_SALE()->label(), ['class' => 'label-warning status-label'])
                        ->toHtml();
                case self::SELLING:
                    return Html::tag('span', self::SELLING()->label(), ['class' => 'label-success status-label'])
                        ->toHtml();
                case self::SOLD:
                    return Html::tag('span', self::SOLD()->label(), ['class' => 'label-danger status-label'])
                        ->toHtml();
                case self::BUILDING:
                    return Html::tag('span', self::BUILDING()->label(), ['class' => 'label-info status-label'])
                        ->toHtml();
                case self::BUILDING:
                    return Html::tag('span', self::UNDERCONSTRUCTION()->label(), ['class' => 'label-info status-label'])
                        ->toHtml();
                case self::BUILDING:
                    return Html::tag('span', self::READYTOMOVEIN()->label(), ['class' => 'label-info status-label'])
                        ->toHtml();
                case self::BUILDING:
                    return Html::tag('span', self::NEWLAUNCH()->label(), ['class' => 'label-info status-label'])
                        ->toHtml();
                default:
                    return null;
            }
        }
    }


  • proprangers replied

    Sorry dear. Its working fine. Thanks :)

  • proprangers replied

    Hi,

    1. I just added few new projects and deleted the demo projects. Now there is no project visible on the home page ? I have cleared all caches but the issue still remains. Kindly check the issue .

    2. What is the code for for following html pages ?

    a ) Home page

    b ) Project page ( with all properties for sale/rent )

    c ) project page when a vendor has listed a property

    d ) Where can I find the code files for admin management ?

    Thanks


  • proprangers replied

    What is "Format" field in BLOG ? What difference it will make if I choose Gallery or Video ?

    Is there any document where I can check for such queries ?

  • proprangers replied

    Now same issue with Blogs also. I deleted all demo blogs and added 2 new blogs. Only one is visible on home page ? Am I missing something ?

  •  2,562
    Support replied

    Hi,

    1. Only "Featured" posts/projects will be shown on homepage.

    2. 

    a) html code for homepage are located in platform/themes/flex-home/partials/short-codes.

    b) platform/themes/flex-home/views/projects.blade.php

    c) platform/themes/flex-home/views/project.blade.php

    d) source code for admin are located in platform/core, platform/packages & platform/plugins.

    3. "Format" field in post form is default by plugin Blog. All format are same in Flex Home theme.

  • proprangers replied

    Blog section issue is resolved. But I have added 14 projects and all are featured. But none is showing in home page.

  •  2,562
    Support replied

    Hi,

    Change your projects status to "Selling" then it should be shown on homepage.

  • proprangers replied

    I just observed that if the project is having status "selling" only then it displays on the home page else on any other status ( few added by me ) does not work .

  • proprangers replied

    But its a bug my dear ? Or do I need to make changes somewhere ?

  •  2,562
    Support replied

    Hi,

    You can change in platform/themes/flex-home/partials/short-codes/featured-projects.blade.php line 10

    from

    're_projects.status' => ProjectStatusEnum::SELLING,
    

    to

    ['re_projects.status', 'NOT_IN', [ProjectStatusEnum::NOT_AVAILABLE]],

    then it should works.

    Screenshot: https://prnt.sc/trndfy

  • proprangers replied

    But after that can I choose any status ? Because I need to choose "Ready to move in" status. Kindly clarify.

  • proprangers replied

    I did the changes and it worked. You must make this in your forthcoming update :)

  • proprangers replied

    What is the code page for SEARCH result page of projects and properties for sale ?

    For  how many days the vendor can list a property ? Can I edit in admin ?

  •  2,562
    Support replied

    Hi,

    Code for projects search: platform/themes/flex-home/src/Http/Controllers/FlexHomeController.php line 205

    For properties search: platform/themes/flex-home/src/Http/Controllers/FlexHomeController.php:252

    Properties will be expired after 45 days by default, you can change it by adding to .env

    PROPERTY_EXPIRED_AFTER_X_DAYS=45


  • proprangers replied

    Kindly clarify what these code  pages for ?


    b) platform/themes/flex-home/views/projects.blade.php

    c) platform/themes/flex-home/views/project.blade.php


    I need code page view for a project posted by admin and next code page for display of a property for sale in a project , which will also show the vendor image and his contact information. 



  • proprangers replied

    Also I found that the style.css file is compressed. Kindly send uncompressed file.

    I hope that style.css file contains all the css classes ?

  •  2,562
    Support replied

    Hi,

    b) it's platform/themes/flex-home/src/Http/Controllers/FlexHomeController.php line 205

    c) platform/themes/flex-home/src/Http/Controllers/FlexHomeController.php line 82


    Uncompresses css, js file are located in platform/themes/flex-home/assets.

    We're using Laravel Mix to compile sass, js https://laravel.com/docs/7.x/mix


  • proprangers replied

    Hi,

    I have done entry of around 30 projects. Now I found that when we enter a name of a project there is no dropdown in the SEARCH BAR on the home page. Even when I enter name of a project and then click "search" the search page shows no result.

    Though your support is OK but I am losing confidence on your app due to many unforeseen issues. Shall I launch my site or not? Have you tested the app properly ?

  •  2,562
    Support replied

    Hi,

    You've changed our rule, we're only display projects with status SELLING, you have to change our code in platform/plugins/real-estate/src/Repositories/Eloquent/ProjectRepository.php line 116

    to

    $this->model->whereNotIn('re_projects.status', [ProjectStatusEnum::NOT_AVAILABLE]);

    Screenshot:

    4383897344.png
  • proprangers replied

    I want to hide 3 block initially on the home page like city , for sale and for rent. How to do that ? I changed their count in the admin but they are still showing.

    As I am adding projects, sometimes it does not complete the SAVE process. When I again click the SAVE button then it completes it, but then there are two similar projects saved.

    Are you releasing the next update on 5th Aug ? Are you adding the NO Image functionality and adding search by category in projects and property pages ?

  •  2,562
    Support replied

    Hi,

    To hide any block from homepage, you need to go to Admin -> Pages -> Select "Homepage" and update content field.

    Screenshot: https://prnt.sc/tsyuk6

    We will update release notes about our changes.

  • proprangers replied

    Are you releasing an update tomorrow ( as mentioned in few messages ) ? I would prefer to launch my site only after reviewing the latest update.



  • proprangers replied

    I am migrating my site www.propingurugram.com to a new domain www.gurgaon.estate. How can I do that ?


    I copied all the files and database of older site to new domain and changed the .env with new values. But still it is showing server error. Shall I deactivate the license of the older site first , then take a backup and then transfer to new site ?

  • proprangers replied

    It's done. Thanks

  •  2,562
    Support replied

    Hi,

    We'll release version 2.10 tomorrow.

  • proprangers replied

    I just checked that you have uploaded the updated version 2.10. But how to update my live site ? Kindly help.

  •  2,562
    Support replied

    It’s not released yet.

    Please wait.

  • proprangers replied

    Yes its released. But how can I upgrade ? There is a section for "developers" in the documentation for upgrade ? What exactly I have to do ?

  •  2,562
  • proprangers replied

    Yes I have read the upgrade guide. My query is regarding the "developer" section ? Do I need to do that or simply update the folders you have mentioned ?

  •  2,562
    Support replied

    Yes, you can.

    We have 2 ways to upgrade to the latest version.

    You can select "non-developer" way.

  • proprangers replied

    While testing I have found following issue :

    1. IN packages , I have set first package as 6 FREE listings. When I tried to purchase the free package, there was nothing on the screen and credits was showing "0". Then again I purchased the free package and still nothing displayed. Then I refreshed the page and found that I could buy the free package twice ? Now I have 12 credits ? Though in the settings I have mentioned that nobody can buy free package twice ? Enclosing the screenshot. This is a very very serious bug. Let me know if I have done something wrong anywhere .

    2. While listing a property for sale/rent the vendor also see a STATUS field. I found that its different than the STATUS field for projects ( which I had changed and added few more values ). Do I need to do the same here also ? Where it will affect and how can I do it ?

    I want to launch the site at the earliest but every time I am stuck on some bug. Kindly treat it as urgent. It seems that I will have to test everything before going ahead.

    Thanks and waiting for your reply.

    Naresh


  • proprangers replied

    Issue 3#

    I have changed the phrase "City" to "Locality". But now I found that it is still showing "City" in the property listing form of Vendor ? Where exactly I need to change it so it should not show on the front end ?

  • proprangers replied

    The pricing is displayed as follows :

    Price: Rs 1.21 billion

    In India we don't use "million" or "billion". How to disable it ? 

  • proprangers replied

    The size is shown as "m2" or metre square. How can I change it to square feet ?

  •  2,562
    Support replied

    Hi,

    There is no option to change "m2" to square feet in admin, you have to change it in source code. 

    To disable "milion", "billion", you need to modify in platform/plugins/real-estate/helpers/currencies.php

  • proprangers replied

    There is no option to change "m2" to square feet in admin, you have to change it in source code. 


    which code file ?

  • proprangers replied

    Kindly reply to two other issues I have raised. I don't think anybody can launch the site with that bug. Kindly correct the issue or let me know the code file where I can try to correct. I am talking about the FREE listing"" package issue and the "CITY" showing on the front issues.

  • proprangers replied

    The problem is with labels. "City" is showing in labels only. Same way I changed translation of "m2" to "ft" so its done but while doing listing its still showing "m2". Kindly help.

  •  2,562
    Support replied

    Hi,

    You can go to your-domain/admin/translations/theme to translate your theme.

    Can you show me a screenshot for "m2"?

  •  2,562
    Support replied

    1. For free package, you need to set "Limit purchase by account" to 1 https://prnt.sc/tv2ry1 then it should works. We don't see that issue on our demo site. I will ask my team test it again.

    2. Yes, property's statuses are not same project's statuses. If you want to add more statuses, you have to change in platform/plugins/real-estate/src/Enums/PropertyStatusEnum.php

  •  2,562
    Support replied

    For "City" text, you also need to change in group "plugins/real-estate/property" https://prnt.sc/tv2vr2

  • proprangers replied

    1. For free package, you need to set "Limit purchase by account" to 1 https://prnt.sc/tv2ry1 then it should works. We don't see that issue on our demo site. I will ask my team test it again.

    I have already shared the snapshot. It's a serious issue. Kindly ask your technical team. The page once purchase button is clicked should be refreshed automatically else the user will keep on buying free packages. Kindly check the snapshots again and you will find that I could buy free package twice.

    2. Yes, property's statuses are not same project's statuses. If you want to add more statuses, you have to change in platform/plugins/real-estate/src/Enums/PropertyStatusEnum.php

    So I have to change in this page and also need to change in another page ( as in search it will work only with selling ? ). Kindly let me know what exactly I need to do and which files I need to make changes.

  •  2,562
    Support replied

    Hi,

    Property doesn't same Project so property's statuses can't same as project's statues, we created 2 list statuses for it.

    If you want to modify property status, you can change in platform/plugins/real-estate/src/Enums/PropertyStatusEnum.php

    You can search properties in any status. You can check on our demo site.

    I can't access your site anymore so I can't check it.

    FYI: we've released v2.10, you can upgrade your site to the latest version if you want.

  •  2,562
    Support replied

    Hi,

    This ticket has many issues. If you can, please create one ticket for one issue so I can easy assign it to my team member.

    It has many replies so sometimes we missed your replies.

  • proprangers replied

    Dear I was the first one to upgrade to 2.10 :)

    My site is 

    www.GURGAON.estate

    I have changed the domain. Earlier domain has been deleted.


  •  2,562
    Support replied

    Hi,

    We've an issue with payment. We updated it 1 hour ago, please do upgrade again if you can.

    In this version, only property/project with status "Not available" will be hidden.

  • proprangers replied

    Which file I need to update for payment issue ?


    In this version, only property/project with status "Not available" will be hidden.

    What exactly this means ?

  •  2,562
    Support replied

    Hi,

    It's platform/plugins/vendor/src/Http/Controllers/PublicController.php from line 204.

    What exactly this means?

    It means all properties will be shown on front site if its status is not "Not available".

  • proprangers replied

    My dear you asked me to update again ( as you have corrected some payment issue ). My query is which file I need to update or need to update all the files required for an update ?

  •  2,562
    Support replied

    Hi,

    You just need to update folders 

    - platform/plugins/vendor

    - platform/plugins/payment

    - platform/plugins/razorpay

    - platform/plugins/paystack.

     

  •  2,562
    Support replied

    I close this ticket because it has many replies now, please re-create a new ticket if you still got issue.