Announcement

Collapse
No announcement yet.

Simple Currency Converter!?

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

    Simple Currency Converter!?

    Hi i've seen various posts on currency converters on the forums and thought i would ask a quick question. I've seen a currency converter on a website and would like to use it on our own, but i am unsure as to how to get it working. I've had a quick play around but no results yet, but i'm sure it's possible.

    the website i saw it on was: www [dot] 3rdand56thstreetclothing [dot] co [dot] uk /shop/Mens+Clothing/Gothic+PunkSkater+Pants+and+Jeans/Denim+Boardwear+Jeans.html#

    I like this currency converter as it submit the value of the item your looking at and it's simple and NO ads which pleases me.

    Have a look and let me know what you think are any ideas?

    Cheers FrAz
    Cheers FrAz

    #2
    Norman at www.drillpine.biz does a plug in called NorPrice that works well and integrates straight in. Well worth the money.
    http://www.drillpine.biz/actinicstuff/index.html

    You can see it in action here:
    www.kjbeckett.com
    and here;
    www.healthandgoodness.com/acatalog/Vitamins.html

    Look for the flags.

    Comment


      #3
      Yeh the NorPrice is a very good plug-in and have seen it on a few Actinic site already, don't have a spare £75 + VAT to throw at it atm. Was lookinf for another alternative and saw this site and like their converter.

      this is the javascript on the product layout:

      HTML Code:
      <script language="javascript" type="text/javascript">//<![CDATA[
      
      
      	function showCurrencyConverter(price) {
            var url = 'http://www.3rdand56thstreetclothing.co.uk/currency_converter/x_price/productprice.html';
            url = url.replace('productprice',price);
            oWindow = window.open(url,'currencyconverter','width=300,height=250,scrollbars=1,resizable=1');
      	}
      
      
      //]]></script>
      surely this can be altered to generate the page with the product price for conversion?

      e.i.

      HTML Code:
      <script language="javascript" type="text/javascript">//<![CDATA[
      
      
      	function showCurrencyConverter(price) {
            var url = 'http://www.classixshop.com/currency_converter/x_price/<actinic:variable name="ProductPriceRaw" />.html';
            url = url.replace('<actinic:variable name="ProductPriceRaw" />',price);
            oWindow = window.open(url,'currencyconverter','width=300,height=250,scrollbars=1,resizable=1');
      	}
      
      
      //]]></script>
      Cheers FrAz
      Cheers FrAz

      Comment

      Working...
      X