Disable Reocurring Events

Home Forums Calendar Products Events Calendar PRO Disable Reocurring Events

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #937606
    fiberartnow
    Participant

    How can I disable the reocurring events option? I’ve looked through the defaults settings and can’t seem to find it. Please advise. Thank you.

    #937696
    Brian
    Keymaster

    Hi,

    Thanks for using our plugins. We do not have an option to hide recurring events.

    You can try tp hide the field by adding this code to your theme’s function.php:

    // Hide Events Calendar Recurring Events
    function ecp_hide_recurrence_css() {
    echo '<style type="text/css">
    #eventDetails .eventtable .recurrence-row {display: none;}
    </style>';
    }

    add_action('admin_head', 'ecp_hide_recurrence_css');

    That is the easiest way to hide it.

    Let me know if that helps.

    Thanks

    #947398
    Brian
    Keymaster

    Since there is has not been any activity on this thread for over 2 weeks so I am now closing it. Feel free to start a new thread if you have further issues. Thanks! 🙂

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Disable Reocurring Events’ is closed to new replies.