Connect your typeform with other tools and apps
Recently active
Hey guys, Typeform is not sending data to our Salesforce account (via the integration), because it’s not recognising the date format if the user doesn’t type out the full year (i.e. if they type 12/12/20, instead of 12/12/2020). I’ve tried making the Date question required, but the form still accepts 12/12/20. I’m just wondering if it’s possible to make the exact format (12/12/2020) required, so if the user enters 12/12/20 the user is notified and promoted to enter the full date? Jarryd
Hi, I have make connection between Typeform and Infusionsoft and I have created a tag for every contact coming from the form. But right now every data that coming through did not have the tag that I have created and Infusionsoft did not capture the data.
Currently, we have the typeform integrated into a page on our Squarespace website. enabled utm tracking parameters within the typeform, but when we test the typeform link by clicking on it via email, it still shows up as direct traffic on Hubspot and the tracking parameters in Typeform show up as “xxxx”. We were wondering where the problem lies and if there is something missing to ensure that the two are connected properly. Thanks!
Hi together,a short & simple question:In my form the navigation back and forward arrows did not work. There is no function to skip back into a question. Here is the form: https://curaden.de/content/98-perioplus-praxisflasche-gratis-zahnarzt-aktion- Is there a solution for? Thanks and greets!
Has anyone used Canva integration with their typeform? I would like to see some different perspectives on it. I myself can’t see why I would use the integration, but I have a lot of friends who use Canva.
I have a designed website with some buttons, which I want to use to lanuch TypeForm as a slider.The embed code already includes rthe button design, but I want to keep my button.Is there a URL or something I can allocate to existing buttons so the form opens as a slider?Or do I need to recreate the design? In that case, how can I create a gradient button in TypeForm embed customizations?
I am using the Typeform to record test results. I have one connection that is to a Google.Sheet with a different TF for each person so that each tab in the same sheet will be a continuous record of their tests. I would like to have a secondary integration when one specific type of test is used so that I can accumulate the number of tests done on that specific date. Is that clear as mud?Thanks - Cheryl
I’m currently promoting a landing page in ads with a link to a non-embedded Typeform -- is it possible to simply send the UTM info from the ad to the landing page and then to Typeform or do I need to switch to embedding it and following the trick I’ve seen discussed here?
Hi all, Due to some GDPR stipulations we are looking to use a Pardot form on our access page to our Typeform, to make sure personal data is input directly into Pardot / Salesforce without being captured with a Typeform info section. Are you able to add the answers captured in Typeform to this record without the personal data being entered into Typeform does anyone know? Example flow below. We are also looking to try and ensure we are not including any additional technology if possible to make this work. Thanks!
Bonjour ! Nous avons connecté plusieurs formulaires de contact à Sendinblue grâce à Zapier. Cependant nous ne trouvons plus les différentes fins des formulaires dans Zapier. Tout fonctionnait très bien avec un seul formulaire mais lorsque nous avons modifié les fins, Zapier n'arrive plus à récupérer les informations. Quelqu'un a déjà eu ce problème ? Merci.Hi there ! We have connected many contact forms to Sendinblue with Zapier. However we no longer find the different endings of forms in Zapier. Everything was working fine with one form but when we changed the purposes, Zapier could no longer retrieve the information. Has someone already had this problem ? Thanks.Before :After :
Hi there, I have linked my calendly and it pops up ok however on my calendly I have two ‘schedules.’ Is there a way for me to access the second schedule via typeform? Currently the calendar that populates is not schedule I want. Cheers, E
Hello everyone, I want to upgrade to business because of facebook pixel integration. But I couldn’t find anywhere if I can use more than one pixel on typeform as I have more than one business? Of course one pixel per typeform… Will appreciate your answer on this
Hi team,I have embedded my Typeform as part of a landing page on my websiteI have searched online but still cannot find a robust solution to my problem - Typeform sessions are counted separately from the Google Analytics sessions. Cross-domain tracking did not work. If I were to run a google ads campaign and redirect users to my landing page, once they interact with the Typeform it becomes a separate sessions. This leads to a loss in attributionPlease help!
Hey folks, I’m curious if anyone has experience or implemented a service that uses Typeform’s form and integrations to facilitate private feedback collection between different suppliers and customers on a two-sided marketplace?E.gAction: Customer A completes a Typeform form for Supplier B on the marketplace Result: Only the marketplace and Supplier B are able to receive and view the submission from Customer A, vice versa.Thanks in advance!
Hi Team, I have connected Mailchimp to my Typeform. I have made extensive use of the tags etc. What I want to do though is to export a calculated field into Mailchimp. I have built a logic which calculates a score for each user based on the answers they choose.I want to use this information in the email journeys triggered through Mailchimp. Currently I am sending out the in-built typeform notification to my users which displays the calculated field. I want to be able to send this variable in my Mailchimp journeys as well. Please help
Hi. We created a Typeform to generate leads on our website. The very last question is for a lead to schedule a date to connect with our business using Calendly. When they click on the date and are confirmed, we still need them to submit their Typeform responses.Unfortunately on mobile, they can’t seem to scroll down to click on the Submit button at the bottom. If you look at the screenshot, you will see half of the Submit button. I have to drag the screen down to see a part of it and can’t click it. Does anyone have any idea why this is happening?
I have created a custom field of single text line and trying to map it with a TypeForm question. But it is not showing in the drop down list. I can see other single line text field and I have mapped it with one of them and test it. it is working with them. I just don’t see the new field I created.
Good Day, This is my first time to post and ask in the community as Typeform support and the other older answers in the forums have been helpful to where I am at and successfully creating my typeform.However, I am now at the extending the things I desire to do with it and have successfully integrated it with the quick way that Typeform is connecting to Google Sheets.I have also successfully created a bar graph of my first result, however here is where my question lies.I wanted to be able to create automatically a bar graph every time a new submission is sent by the respondent in to Google Sheets and be able to be seen by respondents which I know I can further explore via Document Studio.It’s in the How to Create new bar graphs for individual respondent Submission which is my question.
I use NodeJs with Express. I looked the code in https://glitch.com/edit/#!/tf-webhook-receiver?path=server.js%3A1%3A0 . I think, He convert req.body from raw data as buffer (binary) to string and send to method that create Hmac-sha256 and then base 64. I can not use bodyParser.raw({ type: 'application/json' }) from example link in each router because I register app.use(express.json) in application layer, it mean my whole project will receive req as JSON Object. So I do by using some concept in example code by trying to convert req.body being object to JSON String and finally convert to buffer before create hash to compare with req.header('Typeform-Signature').const encodedJsonObject = Buffer.from(JSON.stringify(req.body, null, 0));const hash = crypto.createHmac('sha256',TYPEFORM_SECRET).update(encodedJsonObject).digest('base64');orconst encodedJsonObject = Buffer.from(JSON.stringify(req.body));const hash = crypto.createHmac('sha256', TYPEFORM_SECRET).update(encodedJsonObject).digest(
Hello! I have a Typeform in my company to schedule support sessions/consultancy space (like mentoring) with some experts in different fields.For each field (Marketing, Data, Sales, etc) it’s a different calendly with the respective person in charge of the area to schedule the session Marketing= JulianaData=MariaProject Management=CamilaIt has a flow and logic, so if one person that comes from Marketing wants a consultancy space the logic sent the person directly to the calendly for Juliana. I’d like to see how many people schedule a session with the person in the endings, but as you can see in the picture, it doesn’t show the endings so I don’t know where the person goes. Thanks!
I’m trying to add a survey to a custom object that is a child to parent object ‘contacts’. I’m passing the contact id as a hidden field and want to populate it back into the master-detail field in order to connect my custom object to the Contacts object. However, the master-detail is not appearing in the typeform form mapping in salesforce. Is there a workaround that will get me the same result?
Hi, Our team encounter à problem regarding the embeded Typeforms on our website. The Blocks of the Typeform are not displayed properly on Mobile view. Can anyone help us with this issue ?
I upgraded my account and it says my upgrade is pending despite the help docs saying that upgrades are activated immediately. How long will I need to wait before being able to integrate my form with the upgraded features.
Hi, We have a product page with 2 typeform buttons that open sliders : Get full details slider typeform&Order now slider typeform When people click on “get full details” they access a slider typeform and get an email with a call to action : order now email button This order now email button leads to the product page.I’d like that a specific url links to the product page but opens automatically the order now slider on that specific case anyone has ideas how to achieve this with Typeform ? with custom code ? Many thanks in advance for your ideas and suggestions ! Regards Antoine
Hello,I’ve connected my typeform to Google Sheets.I have a matrix question with the following answers: 0%, 25%, 50%, 75% and 100%When the answers are sent through to google sheets, there is an apostrophe added to the start of the response value, e.g. ‘25%Does anyone know why this happens? Is it to retain the percentage symbol and avoid google sheets auto converting it?ThanksLewis
Don't be shy and ask the community.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.