Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with OpenID
Easy WordPress Donations Plugin Error
  • Here is a quick fix for all buyers of new EWDP 1.6 by Remi Corson

    1. delete file includes/shortcodes/ecommerce.php
    2. open js/tbUniform.js and remove all content
    3. add this to js/tbUniform.js:


    jQuery(document).ready(function($) {
    $('<p class="donation"></p>').insertAfter('form.ewd_form select[name*="amount"]');
    $('form.ewd_form select[name*="amount"] option').each(function(i, e) {
    optValue = $(this).val();
        $('<label class="radioLabel"><input type="radio" name="amount" value="' + optValue +'">' + optValue + "</label>")
            .appendTo('p.donation');
    });
    });

    jQuery(document).ready(function($) {
    $("#tbForm select, .ewd_form select, .variations select, .checkout select, .shipping_calculator select, .edit_address select, input:text, input:radio").uniform();
    $('form.ewd_form select[name*="amount"]').parent().hide();
    $('#getInvolved select.narrow').parent().addClass('narrow');
    });