• Resolved msmcguire

    (@msmcguire)


    I was having difficulty setting a new RSVP reminder time on the settings page. Clicking the “set” button resulted in a page not found error. I altered the form action path referenced in the rsvpmaker-admin.php file line 635.

    Old code:
    <form action=”../../../../wp-content/plugins/rsvpmaker/options-general.php” method=”get”><input type=”hidden” name=”page” value=”rsvpmaker-admin.php” />RSVP Reminders scheduled for: <?php echo date(‘F jS, g:i A / H:i’,wp_next_scheduled( ‘rsvp_daily_reminder_event’ )).’ GMT offset ‘.get_option(‘gmt_offset’).’ hours’; // ?>

    New code:
    <form action=”../../../../wp-admin/rsvpmaker/options-general.php” method=”get”><input type=”hidden” name=”page” value=”rsvpmaker-admin.php” />RSVP Reminders scheduled for: <?php echo date(‘F jS, g:i A / H:i’,wp_next_scheduled( ‘rsvp_daily_reminder_event’ )).’ GMT offset ‘.get_option(‘gmt_offset’).’ hours’; // ?>

    This seems to have corrected the problem. Perhaps this can help others or be incorporated into the next release.

    Cheers,

    Mike

    http://wordpress.org/extend/plugins/rsvpmaker/

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘Issue w/ Setting New Reminder RSVP Time’ is closed to new replies.