Hello,
It is not possible to use standard WordPress update checker because it works only with WordPress plugin repository. According to repository rules it accepts only free plugins so all commercial plugins use own update system.
We will add ability to configure frequency in plugin settings for check update task in a future version of the plugin.
Currently timeout can be changed in <plugin_directory>/includes/class-plugin.php file. See check_plugin_update_init() method. For example replace the following code:
Code: |
$updateChecker = \PucFactory::buildUpdateChecker(
'http://www.ari-soft.com/wordpress/arifancylightbox_update.php',
ARIFANCYLIGHTBOX_EXEC_FILE,
ARIFANCYLIGHTBOX_SLUG,
2
);
|
with the following one to check update each 24 hours:
Code: |
$updateChecker = \PucFactory::buildUpdateChecker(
'http://www.ari-soft.com/wordpress/arifancylightbox_update.php',
ARIFANCYLIGHTBOX_EXEC_FILE,
ARIFANCYLIGHTBOX_SLUG,
24
);
|
Regards,
ARI Soft