• Resolved ronald1411

    (@ronald1411)


    Whenever I type price it adds additional digits e.g. if I add 10000 it turns into 100,010,000. This happens only if you add more than 4 digits and only on the mobile version of the website.

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    the thousands separator (in your case “,”) you can change from wp-admin / Classifieds / Options / Core panel in the field “Thousands Separator”.

    Thread Starter ronald1411

    (@ronald1411)

    I removed the thousand seperator, but the problem still persists.

    Plugin Author Greg Winiarski

    (@gwin)

    You would need to set the thousands separator to a blank space (” “) it cannot be empty, if you do not want to have a separator between thousands at all you can add the code below in your theme functions.php file

    
    add_action( "wp_footer", function() {
    ?>
    <script type="text/javascript">
    if( typeof adverts_currency == "object" ) {
      adverts_currency.aSep = "";
    }
    </script>
    <?php
    }, 1000 );
    
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Price input problem’ is closed to new replies.