Announcement

Collapse
No announcement yet.

Adding a space in the permutation price

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

    Adding a space in the permutation price

    Hi,

    I found the KB info for changing the layout of prices by changing the database directly. I now have a space between the Euro symbol and the figures.

    However this hasn't changed the layout of the prices for permutations.

    I would have thought this should have changed when i updated the other setting.

    any thoughts as to how i can put the space in these prices too.

    Many thanks

    Regards

    Paul

    #2
    Hi,

    I think that there is an issue with the component prices. I'll see if there's a way around it for you.
    ********************
    Tracey
    SellerDeck

    Comment


      #3
      Hi,

      The workaround is to do the following:

      - close Actinic
      - in 'Windows Explorer' browse to the 'C:\Program Files\Actinic v9\' folder
      - take a backup of the 'actinic_main.php' file
      - open this file in notepad and search for:

      function formattedcurrency

      - you should see:

      Code:
      function formattedcurrency($fNumber, $nDecimals, $sDecimalSep, $sThousandsSep, $sCurrencySymbol)
      	{
      	echo $sCurrencySymbol . number_format($fNumber, $nDecimals, $sDecimalSep, $sThousandsSep);
      	}
      - change this to be:

      Code:
      function formattedcurrency($fNumber, $nDecimals, $sDecimalSep, $sThousandsSep, $sCurrencySymbol)
      	{
      	echo $sCurrencySymbol . " " . number_format($fNumber, $nDecimals, $sDecimalSep, $sThousandsSep);
      	}
      - close and save the file
      - re-open Actinic and there should then be a space between the currency symbol and the price in the component prices.
      ********************
      Tracey
      SellerDeck

      Comment

      Working...
      X