Okay. You can try placing the following code in the functions.php
file of your active theme and check if it makes any difference.
/**
* Custom Javascript to make Social Login work
*/
function heateor_ss_custom_script() {
if ( defined( 'THE_CHAMP_SS_VERSION' ) ) {
?>
<script>
(function($) { $(document).on('pjax:complete', function() { setTimeout(function() { var heateorCommonJsElement = document.createElement("script"); var heateorGeneralJsElement = document.createElement("script"); heateorCommonJsElement.src = '<?php echo plugin_dir_url( 'super-socializer/super_socializer.php' ) . 'js/front/social_login/common.js'; ?>'; heateorGeneralJsElement.src = '<?php echo plugin_dir_url( 'super-socializer/super_socializer.php' ) . 'js/front/social_login/general.js'; ?>'; document.body.appendChild(heateorCommonJsElement); document.body.appendChild(heateorGeneralJsElement); }, 1 ); }); })(jQuery);
</script>
<?php
}
}
add_action( 'wp_footer', 'heateor_ss_custom_script' );