This commit is contained in:
Hoang Huu 2019-09-28 14:21:30 +07:00
commit 758df32f28
4 changed files with 3 additions and 70 deletions

View File

@ -2349,39 +2349,6 @@ ul.property-meta-list {
display: inline-block;
font-style: unset; }
i[class*="icon-property-"] {
font-family: "Font Awesome 5 Free"; }
.icon-property-areasize:before {
content: "\f0b2"; }
.icon-property-bedrooms:before {
content: "\f236"; }
.icon-property-bathrooms:before {
content: "\f2cd"; }
.icon-property-parking:before {
content: "\f1b9"; }
.icon-property-builtyear:before {
content: "\f073"; }
.icon-property-plotsize:before {
content: "\f279"; }
.icon-property-orientation:before {
content: "\f14e"; }
.icon-property-livingrooms:before {
content: "\f26c"; }
.icon-property-kitchens:before {
content: "\f2e7"; }
.icon-property-amountrooms:before {
content: "\f1ad"; }
/** Grid **/
.property-grid .entry-content {
padding: 0 20px 15px; }

View File

@ -237,40 +237,6 @@ ul.property-meta-list{
font-style: unset;
}
}
i[class*="icon-property-"]{
font-family: $font-family-icon;
}
.icon-property-areasize:before{
content: "\f0b2";
}
.icon-property-bedrooms:before{
content: "\f236";
}
.icon-property-bathrooms:before{
content: "\f2cd";
}
.icon-property-parking:before{
content: "\f1b9";
}
.icon-property-builtyear:before{
content: "\f073";
}
.icon-property-plotsize:before{
content: "\f279";
}
.icon-property-orientation:before{
content: "\f14e";
}
.icon-property-livingrooms:before{
content: "\f26c";
}
.icon-property-kitchens:before{
content: "\f2e7";
}
.icon-property-amountrooms:before{
content: "\f1ad";
}
/** Grid **/
.property-grid{

View File

@ -1196,7 +1196,7 @@ function opalestate_get_property_meta_icon( $key ) {
$icon = $prefix . '-' . 'compass';
break;
case 'livingrooms':
$icon = $prefix . '-' . 'tivi';
$icon = $prefix . '-' . 'tv';
break;
case 'kitchens':
$icon = $prefix . '-' . 'utensils';

View File

@ -1,8 +1,8 @@
<?php
if( $existed != false || $existed != '' ) {
$fav_class = 'fa fa-heart';
$fav_class = 'fas fa-heart';
} else {
$fav_class = 'fa fa-heart-o';
$fav_class = 'far fa-heart';
}
$need_login = '';
if( !is_user_logged_in() ){