Announcement

Collapse
No announcement yet.

currency & price

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    currency & price

    Hi there,

    I'm looking for changing the place of the currency within the price.
    Now, we have : "€ 500.20"
    I'd like to show : "500.20 €"

    Don't you know where is the perl script I need to change ?

    I've already tryed to search through the Community for an answer, so I'm posting a new thread.

    Why such answer? I'm french and I'like to explain the price of the site in french too.

    Best regards from britany,

    #2
    Hmmm

    The format of this is set by the application.

    The only thing you could do is delete the euro symbol completely out of the 'currencies' table in the 'ActinicCatalog.mdb' database.

    Then insert the euro symbol € after NETQUOTEVAR:COST in Act_ProductPrice.html.

    The downside with this solution is that it will remove the euro symbol from the prices that appear in the shopping cart.

    Comment


      #3
      I really appreciate your answer,

      Have a nice day

      Comment


        #4
        Bonjour Arnaud,

        There is another thread with a discussion of euro symbol problems http://community.actinic.com/showthr...&threadid=5408. Most of that discussion is about trying to get the € symbol to display correctly on Macs, etc. However, during my investigations I came across a better answer to your problem.

        Leave (put back) the € symbol in SCURRENCY of the currencies table and change the values of ICURRENCY and INEGCURR to 3 and 8 respectively. This will put a space and the € after the value.
        Chris Brown

        Comment


          #5
          The full set of price format codes

          For those of you who want to have prices formatted differently to the default supplied by Actinic. Here is a list of the allowable values for the ICURRENCY and INEGCURR columns of the currencies table. I have used the € symbol purely as an example, the formatting works for other currencies too.

          ICURRENCY (controls positive value formatting)
          0 = €9.99
          1 = 9.99€
          2 = € 9.99
          3 = 9.99 €

          INEGCURR (controls negative value formatting)
          0 = (€9.99)
          1 = -€9.99
          2 = €-9.99
          3 = €9.99-
          4 = (9.99&euro
          5 = -9.99€
          6 = 9.99-€
          7 = 9.99€-
          8 = -9.99 €
          9 = -€ 9.99
          10 = 9.99 €-
          11 = € 9.99-
          12 = € -9.99
          13 = 9.99- €
          14 = (€ 9.99)
          15 = (9.99 &euro

          There are other potentially modifiable columns, for the separators and digit grouping.
          Chris Brown

          Comment

          Working...
          X