Events do not link to pages in Wordpress

Events created / added using the post editor and Scheduler plugin interface do not link to the posts. They act like links but don’t go anywhere. How do I fix this?

Still no answer - Is this just not a function of the calendar? If that’s the case, why do the events appear as links and why can I create an event directly from within a post? Can anyone help me resolve this one way or another?

Hi.
I’m sorry for the delay in answering.
To use links to posts go to admin panel “Templates” and modify scheduler.templates.event_text and scheduler.templates.event_bar_text like here:

return '<a href="' + event.guid + '">' + event.text + '</a>';

After that open file scheduler_include.html and add the follow code:

<script>
	scheduler.attachEvent("onBeforeLightbox", function (event_id){
		return false;
	});
</script>

This code will deny lightbox opening.

Thank you for the reply. I will keep this in mind for my next project. My client could not wait so we went with another plug-in.

Hi Radyno,

I tried your solution but I get an undefined link for the event…
Any clue?

Fred

Do you mean that event is reffered to the incorrect link (404 page)?
Could you provide link to your scheduler page?

Hi Radyno,

Thanks for the quick reply!
Yes, it’s an error 404.
Here is the link: http://www.freeactivities.ca/upcoming-events/

Thanks,
Fred

It you’d like to provide link to post page turn on “Show blog posts as events” in scheduler admin panel, please.
Add scheduler event in post editor doesn’t have ability to get editing post url. So it just creates new event in scheduler.
“Show blog posts as events” option will show post links instead of events.

Thanks Radyno but I don’t want to have all the posts show on the Scheduler…
Is it possible to add a parameter in the Post edit to have it link to the post?

Unfortunately there is no way to implement it.

ok, thanks for your help…