Right now the only way to remove that link right now is to use a custom template to display your events. If you go to My Calendar > Template Editor, you can create a custom template for the ‘Grid’ display that only shows the fields you want to be made available.
Thanks Joe, I played around with the various templates and was able to remove the link from the grid and list templates to my satisfaction.
Hello, first thank you a lot for your excellent plugin.
Unfortunately I do not have your mastery of the PHP language and I don’t know what I have to write in the custom template to tell the Grid not to display the ‘Event Details’ link. And where I should put this new custom template (into my own theme folder or into the My Calendar folder ?)
Thanks a lot for helping the novice people ; )
Hi Melanie, I can answer this question as I just when through it. What you need to do is logon to your WordPress control panel and click on ‘My Calendar’ and then select ‘Template Editor’. Then select the Grid window and delete the line:
<p><a href="{linking}" class="event-link external">{title}</a></p></div>
This will remove the Event Details link from the grid details. I also did this to the ‘List’ also. The help gives you the various shortcodes you can use. In my case I added the following after the {hcard} line:
<div class="mc-description">{description}</div>
<p>{ical_html} • {gcal_link}</p>
This added the description and the ical and google calendar links. That way people can add your event onto their calendars!
Hi Sdiverdan, it works, thank you very much for your help ; )
Thanks, @sdiverdan, for helping out!