Help forum
- Move a project to a different organization?
Bishop
5 1 year ago
Is there a way to do this at the moment ? - Setting html lang
mbirkegaard
2 1 year ago
We have a customer request for setting the html lang tag ( "da " instead of "en " ) . I read that a ticket had been created for this . Did this get implemented ? - Wrapping my head around CSS
Erl.ing
50 1 year ago
Toddle is great , but as a (old -school ) HTML /CSS developer I 'm having trouble wrapping my head around the concept of CSS and styling . Examples of things I 'm missing that might be solved in some other way are : - A global stylesheet . I 'm aware of the "Themes " part , but that feels somewhat restricted . How do I set a global line -height for every page , for instance ? Or where do I define the global size of an H2 , the border radius of all input fields , etc . Or if I just want a utility class (sr -only , for example ) ? - How do I set styles to the <html > and <body > tags . I 'm seeing the <div in the preview , but is this <div > the top level I can style ? - In the CSS editor of an element (specifically the top level div ) I 've tried adding more global styles , but I 'm not able to add new rules with selectors . For instance every <p > should have a common bottom padding , adding p { padding -bottom : 5vh ; } strips everything around the declaration . - Blank canvas on editor
yoelfdz
12 1 year ago
Hey Team toddle , I have the editor of a project I 'm working on blank since yesterday , have not figured out why and need to continue - Truncate Text
Alex
9 1 year ago
Are we able to truncate text values in Toddle ? I want to limit text from overflowing like shown in the screenshot - Can I configure more than one domain in the application?
TuTo
27 1 year ago
My platform is a Saas b2b service and my clients can configure their own domain within the platform . For example , clientAdomain .com , clientBdomain .com , clientCdomain .com . All these domains lead to the same application , but depending on the domain is the information that is displayed to the client . Is it possible to do this ? - Importing existing HTML
perroseo
29 1 year ago
Hi ! Playing around with Toddle right now , looks very promising . But is it possible to import an existing HTML page with its CSS and add logic to it through Toddle ? - Streaming from OpenAI into a div?
Bishop
49 1 year ago
Wonder if anyone has done that . . . - how self hosting works?
Guilherme Demacchi
9 1 year ago
Hey guys , not a toddle dev yet but I 'm researching over nocode platforms that has self hosting capabilities , saw that info on toddle website and got curious about it but there 's not much information about it on the docs . Can someone explain to me how it works , how much does it cost ? - Supabase Many to Many Database Structure
Stockton
86 1 year ago
Okay , I want to have the concept of workspaces in my app . 1 workspace can have many users , and 1 user can have many workspaces . I saw the Supabase youtube video on it , but wondering if anyone has done it and can point out any gotcha 's ways to make it better . Particularly around how make the queries efficient and useful . Also , what 's the best way to insert new rows into the many -many table ? Looking for thoughts 🙂 Thank you - Exported web-component API issue
Kamil
7 1 year ago
Hello , so I have built a form as a web component and am trying to embed it on another website . The submission works on toddle , while on the embedded website , the data is not coming through . I also tried with Pabbly webhook with the same result . - Login with Discord
SteaL
15 1 year ago
Hi , I 'm trying to implement a login with discord option on supabase https://supabase.com/docs/guides/auth/social-login/auth-discord . I have some troubles to implement the login code in toddle : async function signInWithDiscord ( ) { const { data , error } = await supabase .auth .signInWithOAuth ( { provider : 'discord ' , } ) } Did someone already did it ? - Setting up Stripe
Tom Wrench
3 1 year ago
I 'm starting to dig into the Stripe setup side of things . I 'm wanting to do something a little more custom than the nocode payment links they have available , so I 've been digging into their dev docs a bit . Although I will eventually move the API side of things to go via Comnoco for security reasons , I 'm playing around with them within toddle just to try get something working . First issue - I 'm trying to create a Checkout Session via API ( https://stripe.com/docs/api/checkout/sessions/create ) and whilst it seems to be communicating fine , the line_items appears to be received as a string rather than an array . I 've included screenshots below of both my data setup within the API request and the error from the Stripe logs . Any ideas what I 'm doing wrong here ? - toddle RTE
Tom Ireland
69 1 year ago
I ’m on a mission to try and create some form of rich text editor within my app and have been looking at examples like Prosemirror , Slate and Lexical to try and figure out how they have been built . 🤯 I ’m curious to know how possible it might be to create something using toddle as it is or if I ’d need to rely on custom code to do this , or if it simply wouldn ’t be possible at all just now ? Just thinking about things like @Andreas Møller ‘s form builder example , it must be possible , right ? Slate looks like it uses something similar to web components to structure the editor . So wondering if it ’s possible to fashion something basic at least . Any thoughts and has anyone had a go at this ? - Logout button
Tom Wrench
9 1 year ago
Hi everyone ! Just a quick question on how to get a button to logout a user ? I 'm using Superbase Auth , and thought that simply setting the session cookie to null or blank (instead of containing the token ) would do the trick . However this isn 't the case ! Any tips ? Thanks ! 🙏