Hi @michelmannheim,
Thanks for using our plugin and reaching out to us.
Our plugin is just used to show events in different layouts. A single page is coming from the events calendar plugin this is not our plugin. In case if you want to design a single event page or change the All Events page link you can use our another plugin
Event Single Page Templates Addon For The Events Calendar
Let me know if you are still facing any issue.
Thanks & Regards
Thanks for your answer.
I will try and keep you informed.
I have faced the same problem. Go to Events Settings->Display and scroll down to Advanced Settings. In the ‘Add HTML before content’ add a button
<input id=”btn_back” style=”border: none;” type=”button” value=”Go Back” />
You can’t add javascript onclick event in here because it will just strip it out.
You need to add the following script in the <head> section of the page (I use Elementor Pro and its Custom Code feature but there are other plugins that will let you do this easily.)
<script type=”text/javascript”>
jQuery(document).ready(function() {
jQuery(‘#btn_back’).on(‘click’, function() {
window.history.go(-1);
return false;
});
});
</script>`
That works a treat. When you go to the event it will return to the previous page NOT the awful events page. I’ve got the event widget on several pages with different filter so does the job well.