Google 번역 위젯을 사용하는 반응 형 사이트가 있습니다. 기이 한 일은 위젯이 이제는 두 번 나타납니다. 이는 간단한 HTML 페이지에 동일한 위젯 코드를 배치하면 한 번만 나타납니다. 이는 반응 형 디자인과 관련이있는 것 같습니다. 이 문제를 해결하는 방법에 대해서는 전혀 모른다. 아무도 이것을 보지 못했습니까?Google 번역 위젯이 두 번 나타납니다
업데이트.
나는 이것이 위도가 한 번만 나타나는 것을 제거하면 이것이 jquery.themepunch.showbizpro.min.js
에 의해 발생한다는 것을 발견했습니다. 아직 해결할 방법을 찾지 못했지만 방법이있을 수 있습니다. 나는이 코드 조각을 발견했다.
<script>
function googleTranslateElementInit() {
new google.translate.TranslateElement(
{ pageLanguage: 'sv' },
'google_translate_element'
);
/*
To remove the "powered by google",
uncomment one of the following code blocks.
NB: This breaks Google's Attribution Requirements:
https://developers.google.com/translate/v2/attribution#attribution-and-logos
*/
// Native (but only works in browsers that support query selector)
if(typeof(document.querySelector) == 'function') {
document.querySelector('.goog-logo-link').setAttribute('style', 'display: none');
document.querySelector('.goog-te-gadget').setAttribute('style', 'font-size: 0');
}
//If you have jQuery - works cross-browser - uncomment this
jQuery('.goog-logo-link').css('display', 'none');
jQuery('.goog-te-gadget').css('font-size', '0');
}
</script>
이 코드는 로고를 제거, 그래서 내가 자바 스크립트를 사용하는 경우 그때 나는 단 하나의 왼쪽에있을 것입니다 확인하고 <select class="goog-te-combo">
의 중복 발생을 제거 할 수 있다고 생각하고, 그게 가능합니까?
몇 가지 코드를 제공해주십시오. – patrykf
위젯이 제거되면 jquery.themepunch.showbizpro.min.js가 위젯을 한 번만 표시한다는 사실을 발견했습니다. 이 문제를 해결할 방법을 찾지 못했지만 방법이있을 수 있습니다.이 코드 조각을 발견했습니다. – MTplus