Viewing 1 replies (of 1 total)
  • Hello iofthebeholder,

    I have been looking at this plugin to use it myself.
    I noticed it doesn’t include the new coins as well, but it appears to be “easy” to add them to the plugin ??

    Version 1.0.1
    class-wc-gateway-moolah.php

    Around line 430 is an array of currencies.

    $currencies = array(
              'Bitcoin' => 'bitcoin',
              'Litecoin' => 'litecoin',
              'Dogecoin' => 'dogecoin',
              'Vertcoin' => 'vertcoin',
              'Auroracoin' => 'auroracoin',
              'Mintcoin' => 'mintcoin',
              'Darkcoin' => 'darkcoin',
              'Maxcoin' => 'maxcoin',
          );

    So for example, I wanted to add Blackcoin. I recommend to copy and paste in the new Array item, notice the comma’s on the end of each line ??

    $currencies = array(
              'Bitcoin' => 'bitcoin',
              'Blackcoin' => 'blackcoin',
              'Litecoin' => 'litecoin',
              'Dogecoin' => 'dogecoin',
              'Vertcoin' => 'vertcoin',
              'Auroracoin' => 'auroracoin',
              'Mintcoin' => 'mintcoin',
              'Darkcoin' => 'darkcoin',
              'Maxcoin' => 'maxcoin',
              'Myriadcoin' => 'myriadcoin',
          );

    I have NOT tested this, as having another issue, hope it works.

    Hope this is helpful until we see a new version.
    Thanks,

Viewing 1 replies (of 1 total)
  • The topic ‘MyriadCoin Integration’ is closed to new replies.