Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter faruman

    (@faruman)

    Modified the fund-campaign-btn.php (wp-content/plugins/wp-crowdfunding/wpcftemplate/woocommerce/basic/include) as follows:

    Replaced:
    <input type="number" min="0" placeholder="<?php echo $recomanded_price; ?>" name="wpneo_donate_amount_field" class="input-text amount wpneo_donate_amount_field text" value="<?php echo $recomanded_price; ?>" data-min-price="<?php echo $min_price ?>" data-max-price="<?php echo $max_price ?>" >
    by
    <input oninput="this.value = this.value.replace(/[^0-9\.]/g, '').split(/\./).slice(0, 2).join('.')" type = "text" placeholder="<?php echo $recomanded_price; ?>" name="wpneo_donate_amount_field" class="input-text amount wpneo_donate_amount_field text" value="<?php echo $recomanded_price; ?>" data-min-price="<?php echo $min_price ?>" data-max-price="<?php echo $max_price ?>" >

    • This reply was modified 6 years, 3 months ago by faruman.
Viewing 1 replies (of 1 total)