• 24-03-2024, 21:05:37
    #1
    arkadaşlar aşağıdaki kodu google recapthca kodu. sitede sağ tarafta whatsapp butonu kullanıyorum. recapthca görselini de sitenin sol tarafına ekleme ve çok küçük görünmesini istiyorum. bunu nasıl yapabilirim ? yerleştirme kodu aşağıda.

     <script src="https://www.google.com/recaptcha/enterprise.js?render=sitekey"></script>
      <!-- Your code -->
    <script>
      function onClick(e) {
        e.preventDefault();
        grecaptcha.enterprise.ready(async () => {
          const token = await grecaptcha.enterprise.execute('güvenlik key', {action: 'LOGIN'});
        });
      }
    </script>
  • 24-03-2024, 21:12:13
    #2
    We 🤍 WordPress
    Ücretli deseydiniz yardıma hemen koşarlardı hocam.

    Garibanın derdini gariban anlar bana whatsapp üzerinden ulaşın yardımcı olayım hocam. ☺
  • 24-03-2024, 21:15:04
    #3
    emir28 adlı üyeden alıntı: mesajı görüntüle
    arkadaşlar aşağıdaki kodu google recapthca kodu. sitede sağ tarafta whatsapp butonu kullanıyorum. recapthca görselini de sitenin sol tarafına ekleme ve çok küçük görünmesini istiyorum. bunu nasıl yapabilirim ? yerleştirme kodu aşağıda.

     <script src="https://www.google.com/recaptcha/enterprise.js?render=sitekey"></script>
      <!-- Your code -->
    <script>
      function onClick(e) {
        e.preventDefault();
        grecaptcha.enterprise.ready(async () => {
          const token = await grecaptcha.enterprise.execute('güvenlik key', {action: 'LOGIN'});
        });
      }
    </script>

     #recaptcha-container {      float: left; /* Sol tarafa yerleştir */      margin-right: 10px; /* İsteğe bağlı boşluk */      transform: scale(0.8); /* Boyutu küçült */    }
    <div id="recaptcha-container"></div> <script src="https://www.google.com/recaptcha/enterprise.js?render=sitekey"></script> <script>  function onClick(e) {    e.preventDefault();    grecaptcha.enterprise.ready(async () => {      const token = await grecaptcha.enterprise.execute('güvenlik key', {action: 'LOGIN'});    });  } </script>

    yedek alıp denermisin bilmiyorum olacak mı ama
  • 24-03-2024, 21:19:55
    #4
    Nookta adlı üyeden alıntı: mesajı görüntüle
     #recaptcha-container {      float: left; /* Sol tarafa yerleştir */      margin-right: 10px; /* İsteğe bağlı boşluk */      transform: scale(0.8); /* Boyutu küçült */    }
    <div id="recaptcha-container"></div> <script src="https://www.google.com/recaptcha/enterprise.js?render=sitekey"></script> <script>  function onClick(e) {    e.preventDefault();    grecaptcha.enterprise.ready(async () => {      const token = await grecaptcha.enterprise.execute('güvenlik key', {action: 'LOGIN'});    });  } </script>
    yedek alıp denermisin bilmiyorum olacak mı ama
    olmadı
  • 24-03-2024, 21:22:13
    #5
    emir28 adlı üyeden alıntı: mesajı görüntüle
    olmadı
    kodu eklerken css varsa onu iletirmisin bakalım belki yapabiliriz
  • 24-03-2024, 21:26:07
    #6
    Nookta adlı üyeden alıntı: mesajı görüntüle
    kodu eklerken css varsa onu iletirmisin bakalım belki yapabiliriz
    css içersine hiç kod eklemedim
  • 24-03-2024, 21:28:22
    #7
    detaylı bakmak lazım birazdan bakayım ufak bi güncelleme işim var
  • 24-03-2024, 21:59:22
    #8
    We 🤍 WordPress
    Tarafımızca sorun çözülmüştür. İyi forumlar dilerim
  • 24-03-2024, 22:03:16
    #9
    softinays adlı üyeden alıntı: mesajı görüntüle
    Ücretli deseydiniz yardıma hemen koşarlardı hocam.

    Garibanın derdini gariban anlar bana whatsapp üzerinden ulaşın yardımcı olayım hocam. ☺
    <style>
     .grecaptcha-badge {
      width: 70px !important;
      overflow: hidden !important;
      transition: all 0.3s ease !important;
      left: 4px !important;
    }
    .grecaptcha-badge:hover {
      width: 256px !important;
    }
    </style>
    
    <script src="https://www.google.com/recaptcha/enterprise.js?render=sitekey"></script>
      <!-- Your code -->
    <script>
      function onClick(e) {
        e.preventDefault();
        grecaptcha.enterprise.ready(async () => {
          const token = await grecaptcha.enterprise.execute('güvenlik key', {action: 'LOGIN'});
        });
      }
    </script>
    şeklinde recapthca kodunu eklerseniz çalışıyor @softinays kardeşime teşekkür ederim ellerine sağlık.