Skip to content

Jimmy Chang

My feedback

27 results found

  1. 6 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    Hello, Thanks for your valuable feedback. As it turns out, we're currently working on this upcoming feature and would love to learn more about your specific requirements. Our team will reach out to you for feedback in the next few days. 


    Best,

    KJ

    An error occurred while saving the comment
    Jimmy Chang commented  · 

    Basically acting as a docusign is what it sounds like.
    Scan existing office document, slap a digital esignature and store for retention.
    i'm all for this

    Jimmy Chang supported this idea  · 
  2. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Jimmy Chang commented  · 

    I hate how everything has to be a flat bar all the way across.

    i.e. multiple choices can sometimes if it's short selections be in 2 column format.

    also the width of the entire form needs to be sized for desktop. it just looks like we didn't want to adapt for desktop vs mobile app so we're forcing desktop to be so small....

    Jimmy Chang supported this idea  · 
  3. 1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Jimmy Chang shared this idea  · 
  4. 59 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    22 comments  ·  Desktop App » Chat  ·  Admin →
    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Jimmy Chang supported this idea  · 
  5. 12 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Jimmy Chang supported this idea  · 
  6. 2 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    An error occurred while saving the comment
    Jimmy Chang commented  · 

    I was able to figure out some simple script to get the desktop and mobile icon to scale down and positioned to how I wanted it. Feel free to insert your own code and edit however you like.

    <script>
    var script = document.createElement('script');
    script.src = "https://book.getweave.com/text-connect/YOUROWNCODE/widget.js";
    script.addEventListener('load', function() {
    // Your code here will run once the script has loaded
    checkMobile();
    });
    script.addEventListener('error', function() {
    // Your code here will run if there's an error loading the script
    console.error('Error loading script');
    });
    document.head.appendChild(script);

    function checkMobile() {
    var isMobile = window.matchMedia("(max-width: 768px)").matches;
    var iframe = document.getElementById('iframe-weave-widget-button');
    if (isMobile && iframe) {
    iframe.style.transform = 'scale(0.45)';
    iframe.style.position = 'fixed';
    iframe.style.right = '-85px'; // Negative right position
    iframe.style.bottom = '-30px'; // Negative bottom position
    } else if (iframe) {
    iframe.style.transform = 'scale(0.7)';
    iframe.style.position = 'fixed';
    iframe.style.right = '-40px'; // Negative right position
    iframe.style.bottom = '-7px'; // Negative bottom position
    }
    }
    </script>

    Jimmy Chang supported this idea  · 
    An error occurred while saving the comment
    Jimmy Chang commented  · 

    Hello, I would like to second this need.

    1) need full customization to CSS on the script level rather than behind the scenes. give us access to width and height for the icon and the form. let us change the colors. these are very very quick and easy to deploy on a css basis.
    2) mobile is WAY too big.
    2) the text Click to send us a message NEEDs to fade away instead of staying there until clicked.

    Below is a temporary workaround until Weave corrects it on their backend. I was able to scale down the icon on both desktop and mobile and reposition the icon. The text is built in the button script and Weave is the only people who can modify that so as a result the text is also scaled down and blurry.

    Begin Script
    var script = document.createElement('script');
    script.src = "https://book.getweave.com/text-connect/YOUROWNCODE/widget.js";
    script.addEventListener('load', function() {
    // Your code here will run once the script has loaded
    checkMobile();
    });
    script.addEventListener('error', function() {
    // Your code here will run if there's an error loading the script
    console.error('Error loading script');
    });
    document.head.appendChild(script);

    function checkMobile() {
    var isMobile = window.matchMedia("(max-width: 768px)").matches;
    var iframe = document.getElementById('iframe-weave-widget-button');
    if (isMobile && iframe) {
    iframe.style.transform = 'scale(0.45)';
    iframe.style.position = 'fixed';
    iframe.style.right = '-85px'; // Negative right position
    iframe.style.bottom = '-30px'; // Negative bottom position
    } else if (iframe) {
    iframe.style.transform = 'scale(0.7)';
    iframe.style.position = 'fixed';
    iframe.style.right = '-40px'; // Negative right position
    iframe.style.bottom = '-7px'; // Negative bottom position
    }
    }
    End script

  7. 21 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    How important is this to you?

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)
    Jimmy Chang supported this idea  · 
2 Next →

Feedback and Knowledge Base