Page 1 of 1

Errors of the version 1.28.2

PostPosted: 31 Jan 2019, 11:02
by support
Errors of the version 1.28.2

Re: Errors of the version 1.28.2

PostPosted: 05 Feb 2019, 11:22
by andipas
In the mobile version there are hidden section buttons when viewing an object.

In the file themes/basis/assets/css/media-queries.css

delete css style
Code: Select all

    
.tab_header {
        display: none;
    }


After changes styles in a file, you must clear the site cache. You can do it in section - Settings - Site maintenance - Press the buttons “Clear folder "assets" and “Clear folder "runtime".

Re: Errors of the version 1.28.2

PostPosted: 08 Feb 2019, 11:04
by andipas
Error: new references were added via the form editor are not displayed

To fix, in the file - protected\modules\formdesigner\models\FormDesigner.php

Replace the code:
Code: Select all

                    
|| ($item['for_sale'] != $forSale)
                    || (
$item['rent'] != $rent)
                    || (
$item['buy'] != $buy)
                    || (
$item['exchange'] != $exchange)
  

on:
Code: Select all

                    
&& ($item['for_sale'] != $forSale)
                    && (
$item['rent'] != $rent)
                    && (
$item['buy'] != $buy)
                    && (
$item['exchange'] != $exchange)