Apploader
TTypebot
•Created by @data4shiny on 5/22/2024 in #help-and-questions
Set max time for user on typebot
It's possible to set start and finish time and then calculate duration. You can then save duration if it is greater than set time
// Example durations in minutes
const responseDuration = {{responseDuration}};
const questionDuration = {{questionDuration}};
// Calculate the duration difference
const durationDifference = (responseDuration - questionDuration).toFixed(1);
// Return the duration difference rounded to one decimal place
return durationDifference;
8 replies
TTypebot
•Created by Apploader on 5/26/2024 in #help-and-questions
New dynamic buttons not working
Sorted
2 replies
TTypebot
•Created by Apploader on 5/23/2024 in #help-and-questions
Whatsapp media upload not stored
@Baptiste It does and solved my problem, thank you
11 replies
TTypebot
•Created by @data4shiny on 5/22/2024 in #help-and-questions
Set max time for user on typebot
I think this should be possible. I have a quiz bot, I will try it over the weekend and share what I got...😉
8 replies
TTypebot
•Created by @data4shiny on 5/23/2024 in #help-and-questions
Google Sheet insert row bellow
Does the formula need to be in the cell of the sheet? You could use Set Variable for the formula and insert the variable in the cell.
7 replies
TTypebot
•Created by Apploader on 5/14/2024 in #help-and-questions
WhatsApp not connecting to bot
Ok, this should be escalated as a bug then
68 replies
TTypebot
•Created by Apploader on 4/28/2024 in #help-and-questions
Repeated buttons from Sheets database
Sorted on my side with
const provincesArray = {{provinces}};
const cleanedArray = provincesArray.filter(element => element || element === 0);
// Convert the array to a Set to remove duplicates
const uniqueSet = new Set(cleanedArray);
// Convert the Set back to an array
const uniqueArray = Array.from(uniqueSet);
return uniqueArray; // [1, 2, 3, 4, 5]
4 replies
TTypebot
•Created by Apploader on 1/15/2024 in #help-and-questions
Typebot not rendering images that were rendered before
I am not sure what you mean by a reproduction
6 replies
TTypebot
•Created by Apploader on 1/15/2024 in #help-and-questions
Typebot not rendering images that were rendered before

6 replies
TTypebot
•Created by Apploader on 11/22/2023 in #help-and-questions
Dynamic Selection
@Baptiste Looks I good now, thanks💪🏻
7 replies
TTypebot
•Created by Apploader on 11/22/2023 in #help-and-questions
Dynamic Selection
Thanks, but I am using gs API and then conditionally select a list (array) from the JSON output (e.g. places in a specific city). The condition works as I get the correct images and matching titles, the problem arises when I click on a particular image with a specific title and I get another title that I did not click.
7 replies