Activation issue on Multisite
-
On a multisite, the plugin keeps trying to run the activation on each page load after already being activated. Issue appears to be in the
hfcm_db_update_check
function:line 70:
if ( get_site_option( 'hfcm_db_version' ) != $hfcm_db_version ) {
line 95:
update_option( 'hfcm_db_version', $hfcm_db_version );
In a normal install I don’t believe their is an issue, but for a multisite it needs to be
update_site_option
to work properly, otherwise theif
conditional check never matches when usingget_site_option
.Thanks!
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Activation issue on Multisite’ is closed to new replies.