I have tried adding a PayPal button to what I think you meant by description - but to get to it the user is required to click on the event first then he will see the new button. We want to replace the existing ticketing system with this new method and our preference is to have the user click on the paypal button as soon as he clicks on the event in the calendar and not from the subsequent page. We would also like that button to be visible on the main calendar. Can you help with that?
Hello. I am reaching out again for help. I am a paid user of your Stachethemes Event Calendar, and really need some support.
Is there a way where I can click an event directly on the calendar and have that take me to pay for the event using paypal. I can get a url to the paypal payment. it seems like this should be possible.
The following code will redirect the user to event's external link if such link is set in Admin Add / Edit Event Page -> Introduction Tab -> External link field.
This mod works for month and week layouts.
/**
* STEC MOD: Month and Week layout.
* Redirects user to event's external link on click
* If event has no external link it will use the default calendar behavior
*/
add_action('wp_footer', function() {
if ( !wp_script_is('stec-js') ) {
return;
}
?>
<script type="text/javascript">
(function ($) {
$(function () {
$.stecExtend(function (m) {
m.$instance.on(m.helper.clickHandle(), '.stec-layout-month-daycell-event, .stec-layout-week-daycell-event', function () {
var event = m.calData.getEventById($(this).data('id'));
if (event.link && event.link.url) {
window.open(event.link.url, '_self');
m.eventsHandler.eventHolder.close();
}
});
});
});
})(window.jQuery);
</script>
<?php
});
Place the code in your theme or child-theme functions.php file.
Hello,
I am wanting to be able to add a PayPal button to your event calendar., When someone clicks a date it should click the button. Can that be done?
Thanks
Even if I could just add a link / url that would go to paypal.
Thanks
Hi,
I'd suggest you to use the PayPal tools to create the html of the button.
And then paste the html in the event's description field. The field supports html code.
Stachethemes Developer
Hey There,
I have tried adding a PayPal button to what I think you meant by description - but to get to it the user is required to click on the event first then he will see the new button. We want to replace the existing ticketing system with this new method and our preference is to have the user click on the paypal button as soon as he clicks on the event in the calendar and not from the subsequent page. We would also like that button to be visible on the main calendar. Can you help with that?
Thanks
Scott
Hello. I am reaching out again for help. I am a paid user of your Stachethemes Event Calendar, and really need some support.
Is there a way where I can click an event directly on the calendar and have that take me to pay for the event using paypal. I can get a url to the paypal payment. it seems like this should be possible.
Thanks
Scott
The following code will redirect the user to event's external link if such link is set in Admin Add / Edit Event Page -> Introduction Tab -> External link field.
This mod works for month and week layouts.
Place the code in your theme or child-theme functions.php file.
Stachethemes Developer
Thank you. I'm assuming the code goes in functions.php?
Yes, preferably in your child-theme functions.php file.
Stachethemes Developer