• Resolved HighRollerUSA

    (@highrollerusa)


    Hi there, does this plugin allow payments to be accepted on the registration? Ideally we’d like to use PayPal to accept PayPal and/or credit cards. If this plugin doesn’t do that, is it possible to just add a PayPal button to the event registration page?
    Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author roundupwp

    (@roundupwp)

    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.

    Plugin Author roundupwp

    (@roundupwp)

    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!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Accepting payments?’ is closed to new replies.