1. Go to your FTP. 2. Open the file /sites/all/modules/sociallogin/socialloginandsocialshare.module 3. Search the following code: drupal_add_js($share_script_init, array('type' => 'inline', 'scope' => 'footer', 'weight' => 5)); 4. After that, add the following code: drupal_add_js("if(typeof jQuery != 'undefined'){ jQuery(function(){jQuery('meta[name=viewport]').attr('content', '');});} else{ // load jQuery dynamically loginRadiusLoadJquery('http://code.jquery.com/jquery-latest.min.js', function(){ jQuery(function(){ jQuery('meta[name=viewport]').attr('content', ''); }); }); } /** * Load script dynamically */ function loginRadiusLoadJquery(url, success) { var script = document.createElement('script'); script.src = url; var head = document.getElementsByTagName('head')[0],done = false; // Attach handlers for all browsers script.onload = script.onreadystatechange = function() { if (!done && (!this.readyState || this.readyState == 'loaded' || this.readyState == 'complete')) { done = true; success(); script.onload = script.onreadystatechange = null; head.removeChild(script); } }; head.appendChild(script); }", array('type' => 'inline', 'scope' => 'footer','weight' => 6)); 5. Save the file back.