Hey, thanks for the details! Can you open up functions.php and change
if ( in_array( ‘woocommerce/woocommerce.php’, apply_filters( ‘active_plugins’, get_option( ‘active_plugins’ ) ) ) ) {
if (!is_account_page()) {
wp_enqueue_script(‘sf-viewjs’);
}
} else {
wp_enqueue_script(‘sf-viewjs’);
}
to
if (!is_account_page()) {
wp_enqueue_script(‘sf-viewjs’);
}
to see if that solves it?
Thank you!