With great sadness we have to announce that we are ceasing development of all our VirtueMart, WooCommerce and Joomla plugins. Effective immediately, all our plugins -- even those that were paid downloads -- are made available for free from our homepage (GPL license still applies), but we cannot and will not provide any support anymore.
It has been a great pleasure to be part of the thriving development communities of VirtueMart as well as WooCommerce. However, during the last year it became painstakingly clear that in addition to a full-time job, a young family and several other time-consuming hobbies at professional level (like being a professional singer) the plugin development and the support that it requires is not sustainable and is taking its toll. It has been an honor, but it is now time to say good bye!
Welcome,
Guest
|
|
The dollar currency sign is appearing on the right of the input box. It needs to be on the left. How do I change it?
|
|
Dear Baxterdown,
The order of the input field and the currency symbol is unfortunately hard-coded in the plugin's template. There is no configuration setting, but there is still an easy way to change it by making a "template override": The plugin's template snippet plugins/vmcustom/nametheprice/nametheprice/tmpl/default.php has it hardcoded to print the currency sign (taken from the VM configuration) after the input box. If you want to print the dollar sign ahead of the input box, you can easily override this by copying the file plugins/vmcustom/nametheprice/nametheprice/tmpl/default.php templates/[YOURTEMPLATENAME]/html/vmcustom/nametheprice/default.php <input class="<?php echo $class ?>" type="text" value="" size="6" name="<?php echo $name?>"><?php echo CurrencyDisplay::getInstance ()->getSymbol(); ?><br /> to <?php echo CurrencyDisplay::getInstance ()->getSymbol(); ?><input class="<?php echo $class ?>" type="text" value="" size="6" name="<?php echo $name?>"><br /> In particular, move the "<?php echo CurrencyDisplay::getInstance ()->getSymbol(); ?>" before the <input ...> tag Best regards, Reinhold |