For a project I need to have a proper PayPal integration into E!A. Means, if you choose a paid service you will need to process a payment via PayPal to get the appointment booked.
I spoke with Alex the developer of E!A and he would do it as a freelance job. Unfortunately his price is a bit too high for our use case.
If someone is interested in the PayPal integration, too, and willing to join in, please send me a message.
I'll keep the post updated so that everyone knows how many actually join. The more join in, the cheaper it will become for everyone!
$(document).ready(function() {
/*
show paypal button
*/
if (GlobalVariables.serviceData['price'] > 0) { $('#paynow').append(
'<p><br><br>Bitte bezahlen Sie jetzt hier!' +
'<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">' +
// '<input type="hidden" name="cmd" value="_s-xclick">' +
'<input type="hidden" name="cmd" value="_xclick">' +
// '<input type="hidden" name="hosted_button_id" value=" ### add you id ###">' +
'<input type="hidden" name="business" value="### add you business ###">' +
'<input type="hidden" name="lc" value="DE">' +
'<input type="hidden" name="item_name" value="' + GlobalVariables.serviceData['name'] + '">' +
'<input type="hidden" name="amount" value="' + GlobalVariables.serviceData['price'] + '">' +
'<input type="hidden" name="currency_code" value="EUR">' +
'<input type="hidden" name="button_subtype" value="services">' +
'<input type="hidden" name="no_note" value="0">' +
'<input type="hidden" name="cn" value="Mitteilung:">' +
'<input type="hidden" name="no_shipping" value="1">' +
'<input type="hidden" name="bn" value="PP-BuyNowBF:btn_paynowCC_LG.gif:NonHosted">' +
'<input type="image" src="https://www.paypalobjects.com/de_DE/DE/i/btn/btn_paynowCC_LG.gif" border="0" name="submit" alt="Jetzt einfach, schnell und sicher online bezahlen – mit PayPal.">' +
'<img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1">' +
'</form>' +
'</p>');
}
....