Okay
  Public Ticket #1451062
Changing $ to € in the all the loan pages
Closed

Comments

  • solomonansah started the conversation

    I have been reading a ticket for this, you mentioned this

    "wp-content/theme/borrow/template-tag.php find "#amount"

    then change 

    $("#amount").val("$" + $("#slider-range-min").slider("value"));"


    I can not find this at the location you pointed to; have you changed the name of the file?


    Thank you.
    Solomon.



  •  2,010
    Ocean replied

    You can change 

    $("#amount").val("$" + ui.value);

    to

    $("#amount").val("€" + ui.value);

    and

    $("#amount").val("$" + $("#slider-range-min").slider("value"));

    to

    $("#amount").val("€" + $("#slider-range-min").slider("value"));
  • solomonansah replied

    Thanks I found it the framework folder.


    Another thing:

    How can I change the font and the the text size of the amount  displaying the result.
    Eg: the car loan displays with the same size as the others. how can I make it appear bigger.

  •  2,010
    Ocean replied

    Hi,

    you can add css code. Go to borrow Options/Styling option/ Css Code => add css

    .amount input.form-control {

    font-size: your-size;

    font-family: your-font;

    }