Hi marzillow
Did you try to install it on the sub website ?
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
I did not try installing Chronoforms on multisites before, but I can provide you with a code fix to try if you are comfortable updating a code file ?
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
Hi,
here is a code change that you can try, at the end of this file: WP/wp-content/plugins/chronoforms/chronoforms.php
find this function: function chronoforms_activation_function() {
and before the end of the function: }
add this code:
if ( is_multisite() && is_network_admin() ) {
$site_ids = $wpdb->get_col("SELECT blog_id FROM {$wpdb->blogs} WHERE archived = '0' AND deleted = '0'");
foreach ( $site_ids as $site_id ) {
switch_to_blog($site_id); // Switch to the current site
foreach($statements as $statement){
if(!empty(trim($statement))){
dbDelta("CREATE ".$statement);
}
}
restore_current_blog(); // Switch back to the network admin site
}
}
Then you will need to deactivate the plugin on the main site and activate it again for this to work
Let me know if it creates the tables on sub sites or not
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.