Hey HighRollerUSA,
The plugin currently doesn’t accept payments but it would be easy enough to add a paypal button to the single event page that the form appears on. It would depend on what plugin or method you’re using to add a paypal button but if you use a shortcode, you could use this php code:
add_action( 'tribe_events_single_event_before_the_content', 'add_paypal_button_to_page' );
function add_paypal_button_to_page() {
// code to add the button example
echo do_shortcode( '[paypal-button-shortcode]' );
}
You could move the button down the page with the other hooks for the template. For example you could change the ‘tribe_events_single_event_before_the_content’ part to ‘tribe_events_single_event_after_the_content’, ‘tribe_events_single_event_before_the_meta’, or ‘tribe_events_single_event_after_the_meta’.
Hopefully that helps! Let me know if you have more questions.
Hey again,
We have plans to add payments to the paid “Pro” version but not yet the free version. I’m going to go ahead and close this thread for now but let me know if you have any more questions!