Question

I am using SharePoint 2013 OP.

I have a calendar view, with several re-occuring appointments. Is there a way of disabling the link, so that you can't click into the appointment to see further details?

Thanks

No correct solution

OTHER TIPS

Here is a script I tested and worked in my end. Please have a try. It is from the thread here: disable hyperlink in calendar event view, but keep the 'expand' option available

<script src="//code.jquery.com/jquery-3.2.1.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {      
     setInterval(function (){
        $(".ms-acal-item").bind("click dblclick", function () {
            return false;
        });
        $(".ms-acal-item a").bind("click dblclick", function () {
            return false;
        });

        $(".ms-acal-item a").each(function(){
            $(this).replaceWith($(this).text());
        });     
    },1000);
});
</script>
Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top