• Resolved webinvaders

    (@webinvaders)


    I have use-case that client charge their services by percent of value created, so i need to show that in pricing table.

    So far I’ve fixed this using custom JS to add blank option in selector but every time i need to change something in pricing table it is reset to default ($).

    Can you implement this option?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author A WP Life

    (@awordpresslife)

    Hi,

    Did you achieve a solution or need any help?

    Thanks

    Thread Starter webinvaders

    (@webinvaders)

    I’ve created workaround by using jQuery in wp admin to add “No currency” option to plugins list of currency, but this is not ideal since every time we need to change something in pricing table currency is set back to default (USD) so it is tedious to set it back to “No currency” every time (and have to think about it).

    This is how i’ve done it:
    jQuery(document).ready(function () {
    if(jQuery(‘#currency_icon’).length) {
    jQuery(‘#currency_icon’).prepend(‘<option value=””>No Currency</option>’);
    }
    });

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Option for “no currency”’ is closed to new replies.