Jimmy Chang
My feedback
24 results found
-
65 votes
Good morning, everyone!
We need your valuable feedback to take the Team Chat experience to the next level. We invite you to participate in this 5-minute survey to vote for your favorite features (this feature included) and share your thoughts.
Best,
KJ
PS: Please excuse if you'd received this survey invite already.
Jimmy Chang supported this idea · -
14 votesJimmy Chang supported this idea ·
-
2 votes
An error occurred while saving the comment Jimmy Chang supported this idea ·An error occurred while saving the comment Jimmy Chang commentedHello, 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 -
22 votesJimmy Chang supported this idea ·
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>