• Resolved mikeknappe

    (@mikeknappe)


    Hi Joe,

    since you’re quite active in the support forum and you’re willing to add new features and fix bugs I have another thing, which is a bit unconfortable with the plugin.

    You have a filter, which can be installed to add a reminder function to the dates in global. Currently I have the following in an own plugin to fix/adjust the reminder functionality within iCal subsriptions.

    //Set a default calendar alarm for My Calendar Plugin
    function set_default_calendar_alarm( $retArr, $postId, $postArr )
    {
        $retArr = array(
            'TRIGGER' => '-PT2H' //2h before the appointment starts
        );
        return $retArr;
    }
    add_filter( 'mc_event_has_alarm', 'set_default_calendar_alarm', 10, 3 );

    Problem: I need to write code on my own. Which is not at all a problem for me, but maybe for 90% of the other users. So, would it be possible that you create a global setting, which can be adjusted to set a calendar wide reminder option? Furthermore, if I remind myself correct, it’s only possible to set one time, because you handle one one entry of the array at all. It throught it wasn’t possible so set more than one reminder, altought iCal format is able to

    It would be awesome to have such a functionality represented as per-default options in the global settings and adjustable within each new appointment, which take the data from the global setting; and a cream topping an array – so that I can setup more than one reminder via the UI / backend.

    Best regards.
    Mike

Viewing 1 replies (of 1 total)
  • Plugin Author Joe Dolson

    (@joedolson)

    Thanks! I’ve added this as a feature request in my Github repository. I’ve added it as a candidate for My Calendar Pro; this is probably not something I’ll add to the free version, but I’ll definitely work on it.

Viewing 1 replies (of 1 total)

The topic ‘Adjustable reminder function for iCal’ is closed to new replies.