Mario Barretta
TTypebot
•Created by TengoKu on 3/18/2025 in #help-and-questions
How do I integrate the typebot into a website?
I'm sorry but I continue to not understand what do you mean Thai put not can have a price if you want to subscribe the pro version.
There's a free and a paid version with some difference
41 replies
TTypebot
•Created by TengoKu on 3/18/2025 in #help-and-questions
How do I integrate the typebot into a website?
I do not understand
41 replies
TTypebot
•Created by TengoKu on 3/18/2025 in #help-and-questions
How do I integrate the typebot into a website?
You are welcome
41 replies
TTypebot
•Created by TengoKu on 3/18/2025 in #help-and-questions
How do I integrate the typebot into a website?

41 replies
TTypebot
•Created by TengoKu on 3/18/2025 in #help-and-questions
How do I integrate the typebot into a website?
You can embed it or insert it with plugin and shortcode (with WordPress cms https://docs.typebot.io/deploy/web/wordpress#wordpress)
41 replies
TTypebot
•Created by digitalcrew on 1/10/2025 in #help-and-questions
Can we take stripe payment directly on WhatsApp or can it be used with WhatsApp.
The stripe payment link take this info during the checkout process so yu do not need to take them by whatsapp (for that's not possible).
You can manage all with your stripe's dashboard that's a very good service.
In Typebot you can use the dedicated block and take all data in the flow (but in typebot and not in whatsapp)
7 replies
TTypebot
•Created by digitalcrew on 1/10/2025 in #help-and-questions
Can we take stripe payment directly on WhatsApp or can it be used with WhatsApp.
Have you thought to use Stripe link payment generated directly form stripe's dahsboard?
7 replies
TTypebot
•Created by altomarketing on 12/30/2024 in #help-and-questions
Script to determinate Country from phone number
Try with this (just the result with a deeper inspection by deepseek)
// Obtener el número de teléfono de la variable Typebot y evitar valores nulos let phone = "{{Phone}}" || ""; // Evita valores nulos phone = phone.replace(/\D/g, ''); // Elimina todos los caracteres no numéricos // Elimina prefijos como "+" o "00" if (phone.startsWith("00")) { phone = phone.substring(2); // Elimina "00" si está en formato internacional } else if (phone.startsWith("+")) { phone = phone.substring(1); // Elimina "+" } // Función para determinar el país basado en el prefijo function determineCountry(phoneNumber) { let country; // Comprueba los códigos internacionales if (phoneNumber.startsWith("54")) { country = "Argentina"; } else if (phoneNumber.startsWith("598")) { // Uruguay tiene un prefijo de 3 dígitos country = "Uruguay"; } else if (phoneNumber.startsWith("52")) { country = "Mexico"; } else if (phoneNumber.startsWith("1")) { // USA y Canadá country = "USA"; } else { country = "UNKNOWN"; // Por defecto } return country; } // Determina el país y guarda el resultado let countryfinal = determineCountry(phone); // Establece la variable 'country' en Typebot setVariable('country', countryfinal); // Depuración para verificar los datos console.log("Phone:", phone); // Muestra el número limpio console.log("Country:", countryfinal); // Muestra el país detectado
27 replies
TTypebot
•Created by William on 6/3/2024 in #help-and-questions
How to display a link in Response
If you do not write
Get more information about Samurai <a href="https://en.wikipedia.org/wiki/Samurai" target="_blank" rel="noopener noreferrer">here</a>!
but
Get more information about Samurai here
it will work
6 replies
TTypebot
•Created by Mavis on 12/11/2024 in #help-and-questions
Integration with OpenAI
Have you set your opening account?
Please read https://docs.typebot.io/editor/blocks/integrations/openai#openai
9 replies
TTypebot
•Created by Mavis on 12/11/2024 in #help-and-questions
Integration with OpenAI
Hi please can you share your flow so to see what have you created?
9 replies