OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
Joomla Real Estate price field (0 viewing) 

Joomla Real Estate

Go to bottom Favoured: 0

Joomla Real Estate price field

admin (Admin)
Admin
Posts: 8367
graph
User Offline Click here to see the profile of this user
Joomla Real Estate price field 1 Year, 2 Months ago
Karma: 102  
En el módulo Joomla Real Estate - software de listado joomla de gestión de propiedades

Slide principal, en cada propiedad muestra el precio en la moneda seleccionada al crear la propiedad (eso está correcto)

Sin embargo, al seleccionar una propiedad la muestra con todas las monedas definidas (esto está incorrecto) y debiera mostrar solo la moneda que se seleccionó al crear la propiedad

Si me dan un correo, puedo enviarles imágenes para que se entienda mejor

Gracias

Hello

In slider we can't show all info about property in Property details - we can show all prices which you added.
If you need 1 currency on site, Please in
VehicleManager : Settings - Frontend Settings - Price Settings -
enter the values as: USD = 1;
or EUR = 1;
Or other currency

You need resave all properties after that

Regards
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
LordEnzo (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Re:Joomla Real Estate price field 1 Year, 2 Months ago
Karma: 0  
No entendieron la pregunta, ni el problema que se me presenta por su error de programación. Entendieron todo mal. El problema es con el módulo REAL ESTATE!

El error es al acceder o seleccionar una propiedad, ya que muestra todas las monedas definidas y debiera mostrar solo la moneda que se eligió al ingresar la propiedad

Les sugiero leer bien el problema que les detallo

Les adjunto imágenes

Necesito mostrar solo el precio en la moneda seleccionada, al crear la propiedad
Logged Logged
Last Edit: 2023/10/03 21:15 By LordEnzo.
The administrator has disabled public write access.
LordEnzo (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Re:Joomla Real Estate price field 1 Year, 2 Months ago
Karma: 0  
Archivos adjuntos
Logged Logged
Last Edit: 2023/10/03 21:10 By LordEnzo.
The administrator has disabled public write access.
LordEnzo (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Re:Joomla Real Estate price field 1 Year, 2 Months ago
Karma: 0  
archivo adjunto
Logged Logged
Last Edit: 2023/10/03 21:19 By LordEnzo.
The administrator has disabled public write access.
LordEnzo (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Re:Joomla Real Estate price field 1 Year, 2 Months ago
Karma: 0  
LordEnzo wrote:
Archivos adjuntos
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8367
graph
User Offline Click here to see the profile of this user
Re:Joomla Real Estate price field 1 Year, 2 Months ago
Karma: 102  
In our joomla real estate - this is not error - we special created that. In every Estate - details - we show all info.
For Estate - price - you may set at site do many currencies - as you wish. And in Property details - we show price in all these currencies !!!!
And best way if you wish show at site 1 currency - configure this in real estate component settings - as we described before ! Other you confuse users.

BUT if you need show in Estate detail show only 1 currency - which user select, you need:

1. with help FTP, go to
{your site}/components/com_realestatemanager/views/view_house/tmpl/
copy file default.php to defaultold.php
2. open file default.php - in some editor,
3. find code
Code:

    if($currencys_price){
      foreach ($currencys_price as $key => $row) {
        if ($realestatemanager_configuration['price_unit_show'] == '1') {
          if ($params->get('show_sale_separator')) {
            echo "<div class="pricemoney"><span class="money">"
                . formatMoney($row, $realestatemanager_configuration['sale_fraction'], $realestatemanager_configuration['price_format']) . "</span>";
            echo "<span class="price">&nbsp;" . $key . "</span></div>";
          } else {
            echo "<div class="pricemoney"><span class="money">" . $row . "</span>";
            echo "<span class="price">&nbsp;" . $key . "</span></div>";
          }
        } else {
          if ($params->get('show_sale_separator')) {
            echo "<div class="pricemoney"><span class="price">" . $key . "</span>";
            echo "&nbsp;<span class="money">"
                . formatMoney($row, $realestatemanager_configuration['sale_fraction'], $realestatemanager_configuration['price_format']) .
                "</span></div>";
          } else {
            echo "<div class="pricemoney"><span class="price">" . $key . "</span>";
            echo "&nbsp;<span class="money">" . $row . "</span></div>";
          }
        }
      }
    }



and replace to code:

Code:

    if ( trim($house->price)  !== '' ){
        echo "<div class='featured_list_price '>" ;

        if(!incorrect_price($house->price)){

        if ($realestatemanager_configuration['price_unit_show'] == '1') {
            if ($realestatemanager_configuration['sale_separator']) {
                echo formatMoney($house->price, $realestatemanager_configuration['sale_fraction'], $realestatemanager_configuration['price_format'])
                 . "&nbsp;" . $house->priceunit ;
            } else {
                echo  $house->price . "&nbsp;" . $house->priceunit;    
            }
        } else {
            if ($realestatemanager_configuration['sale_separator']) {
                echo $house->priceunit . "&nbsp;" .
                 formatMoney($house>price, $realestatemanager_configuration['sale_fraction'], $realestatemanager_configuration['price_format']);
            } else {
                echo $house->priceunit . "&nbsp;" . $house->price ;
            }
        }              

      }else{
        echo $house->price;
      }

        echo "</div>" ;
    }



But there only example - you will need careful add so changes - if you have error please return back 1 file

Regards
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»