RSVP form for Facebook events from a WordPress post?

I’m also working on this right now, I’d love if you post your final solution once you get there. Here are two tutorials that may help you. http://www.masteringapi.com/tutorials/how-to-check-status-and-rsvp-to-facebook-events-using-graph-api-fql/61/ http://www.masteringapi.com/tutorials/how-to-create-facebook-events-using-graph-api-advanced/59/

Plugin: Events Manager – Search by start date only

I solved this. First add $args[‘scope’] = $_REQUEST[‘scope’][0]; to the events-list.php under the line: em_locate_template(‘templates/events-search.php’,true); This will stop the search from finding a date range and only search single dates. Then in events-search.php, remove the second box for end-date. then in events manager plugin folder “classes” file em-events.php This is what it should look like … Read more

Create a custom event post

The easiest way to create a custom post type in WordPress is by using a plugin. This method is recommended for beginner because it is safe and easy. For example : Custom Post Type UI The problem with using a plugin is that your custom post types will disappear when the plugin is deactivated. you … Read more

Trigger background job using AJAX

I don’t think you need to worry about this running flag or unscheduling. Since you are scheduling a one-time job that will run immediately there’s no reason to unschedule it. You just need to check if a job with that name is scheduled or not and if it is (even if it is running at … Read more

1 day after custom date change post status to draft

Your question isn’t very clear. Do you mean: 1 day after koncerter_start_date all posts with custom-post-type koncert have to get the status draft? EDIT Code: add_action( ‘wp_loaded’, ‘concert_daily_tasks’ ); function concert_daily_tasks() { $current_url = “https://” . $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’]; if ( $current_url == ‘https://example.com/concert-daily-tasks’ ) { // <– set the correct URL! check_concert_status(); } } … Read more