Discussions
Activity
Sign In
Howdy, Stranger!
It looks like you're new here. If you want to get involved, click one of these buttons!
Sign In
Apply for Membership
Categories
All Discussions
92
The Cause
59
Candidate
31
General
2
The Cause
Easy WordPress Donations Plugin Error
themeblossom
November 2012
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');
});
Add a Comment
Powered by Vanilla