• Resolved rahulsahu013

    (@rahulsahu013)


    Hello Sir
    in the backend rental property section price is showing in decimal value like 590.0$
    so it is not displaying on front site either it is for a day/week/year.
    It is showing like ‘$590/’. I want to display it as ‘$590/week’.

    And when we update the price to numeric value 590$ it is displaying $590/week.
    as we are getting data in XML we cannot apply any function to change the price in numeric value.

    Also when we try to update any Rent property it says please enter Numeric value.

    Here you can see the things what i m getting.
    http://www.hunterestateagents.com.au/rental/

    Please help me to get out this problem.
    Thanks

    https://wordpress.org/plugins/easy-property-listings/

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Merv Barrett

    (@mervb1)

    Your feed is strange appending .0 to a price. And yes you can apply a function to a field in WP All Import Pro and filter it in the property_rent field.

    Has the data been entered in the CRM software correctly?

    You can create a function to process this strange number format.

    function my_function_number_format($input) {
     // Do some stuff to $input variable
       return $input;
    }

    Then in the pricing fields in WP All Import Pro use

    [my_function_number_format({COPY_FIELD_FROM_SCRIPT})]

    Thread Starter rahulsahu013

    (@rahulsahu013)

    I have used your function and [my_function_number_format({rent[1]})]. This is convert 590.0$ to 590$ in backend price list. But at front end it showing same as ‘$590/’. I want to display it as ‘$590/week’.

    In Wp import section pricing rent display using this ‘{rent[1]/@display}’. it gives me this ‘$590/’ and whenever i change it ‘{rent[1]/week}’, front end price show ‘TBA’. How can display price as ‘$590/week’ mean dynamic.

    Plugin Author Merv Barrett

    (@mervb1)

    Did you use our import scripts? And why yo you write 590$ instead of $590

    Thread Starter rahulsahu013

    (@rahulsahu013)

    Yes I am using your provided import scripts. Sorry for write 590$.

    Plugin Author Merv Barrett

    (@mervb1)

    Please visit our priority support options to help you. Importing REAXML is a complicated process and is beyond the support I can offer you here.

    http://easypropertylistings.com.au/support/pricing/

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘showing price issue’ is closed to new replies.