Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #1094900

    Why is the field not encrypted?
    All my clients can see the token

    #1094914

    Hey caw67,
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function envato_token_script(){
      ?>
      <script>
    (function($){
      $(document).ready(function(){
    $('#avia_updates_envato_token').find('input:text').each(function() {
       $("<input type='password' />").attr({ name: this.name, value: this.value }).insertBefore(this);
    }).remove();
    });
      })(jQuery);
      </script>
      <?php
      }
    add_action('admin_head', 'envato_token_script');
    

    Best regards,
    Mike

    #1094919

    thanks! it works!

    #1094920

    would it be useful to integrate in the theme in general?

    #1094926

    Hi,
    Glad to hear, I submitted a request for this with the dev team, they will review and perhaps add it to a future update.
    Shall we close this then?

    Best regards,
    Mike

    #1094933

    yes can be closed

    #1094935

    Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)

    Best regards,
    Mike

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Personal TOken’ is closed to new replies.