Sync user meta fields using Wp cron job

If you want to remove the functionality of the original plugin, try adding this to your theme’s functions.php file function add_thirty_day_cron($schedules) { $schedules[‘thirtydays’] = array( ‘interval’ => 30 * DAY_IN_SECONDS, ‘display’ => __( ‘Every 30 days’) ); return $schedules; } add_filter(‘cron_schedules’,’add_thirty_day_cron’);//adds 30 day interval add_action(‘do_meta_sync’, ‘my_meta_sync’);//hook for cron function my_meta_sync() { if (function_exists(‘msf_action_callback’)) msf_action_callback(); } … Read more

WP All Import manual Cron

You can try like this: wget -q -O /dev/null “https://example.com/wp-load.php?import_key=123xyz&import_id=YOURID&action=trigger” From the documentation Each import has two cron URLs – a trigger URL, and a processing URL. The trigger URL will look something like this: http://YOUR-WEBSITE.com/wp-load.php?import_key=[YOUR_SECRET_KEY]&import_id=[YOUR_IMPORT_ID]&action=trigger The processing URL will look something like this: http://YOUR-WEBSITE.com/wp-load.php?import_key=[YOUR_SECRET_KEY]&import_id=[YOUR_IMPORT_ID]&action=processing You can find your secret key on the All Import … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)