/home/techb158/primomovers.ca/wp-content/plugins/everest-forms/addons/DiviBuilder
Edit: /home/techb158/primomovers.ca/wp-content/plugins/everest-forms/addons/DiviBuilder/Helper.php (1365B)
Name;
$parent_theme = $active_theme_details->parent();
$parent_theme_name = $parent_theme ? $parent_theme->Name : '';
if ( 'Divi' === $theme_name || 'Divi' === $parent_theme_name ) {
return true;
}
return false;
}
/**
* Notice if the divi is not installed.
*
* @since 3.0.5
*/
public static function print_admin_notice() {
add_action(
'admin_notices',
function () {
printf(
'
',
esc_html( 'Everest Forms:' ),
wp_kses_post( 'Divi Integration addon requires Divi theme to be installed and activated.', 'everest-forms' ),
esc_html__( 'Dismiss this notice.', 'everest-forms' )
);
}
);
return;
}
}