PricingBlog

Help forum

  • patrickmast-1275172867587182734

    Patrick Mast

    31

    1 year ago

    Line break in text element
    If I add a <br> in a text element, the <br> is just displayed without creating a new line. How can I instruct the text in the text element to move to the next line?
  • isaact7359-1275137353312374874

    IsaacT

    15

    1 year ago

    Open AI Assitent with Xano
    I have seen that there is a package that works with an AI Chat, but I am specifically looking for a tutorial or documentation to create an assistant in Toddle with Xano and Open AI. Could someone give me some guidance?
  • neville9288-1275066068745846889

    Neville

    3

    1 year ago

    Custom stylesheet?
    Hello toddlers! 😁

    I am building a document library app, and one of the things I need is a custom stylesheet that governs how the documents are displayed. In Webflow, I just designed a "stylesheet" page with all the classes, and generated the documents using those classes. Because the classes are available in all pages, display works perfectly.

    In Toddle, I was thinking I can generate a stylesheet, upload it to my toddle site, and then reference the stylesheet in the "view document" page. However, it seems that Toddle doesn't allow uploading anything other than media files.

    I would like to keep my dev and deployment stacks as small as possible, so I would like to avoid using an external CDN if I can.

    Any ideas on how I can accomplish this?

    Thanks for the help!
  • prettycold_-1275049276837331048

    Sam B

    26

    1 year ago

    Authorization error while building the ToDo app (Day 3 in Learn Toddle in one week)
    Heya,

    I'm starting with Toddle and I'm loving it so far. Since I'm a developer myself, this tool seems very intutive.

    Kinda stuck with a small error while I was following Day 3 tutorial, building a to do app.

    I'm able to Sign up, Log in, I see the auth token that gets returned too. But when in the list repeat formula, the auth token desn't seem to be passed. When I click on the API, I always get an Unauthorized error.

    Here's a screenshot of my API. I checked all steps quite a few times, what may I be missing? Any thoughts?
  • alexsiale_17363-1275034796174606376

    Alex

    8

    1 year ago

    Supabase RLS issues on Inserting new row
    Can anyone help me, maybe @Lucas G again... with my RLS new row error?

    I feel like it's set up correctly. It works if I diasble RLS, but then errors when enabled again, so it's obviously the way I've set up the policy thats the issue.
  • samuelt_19895-1275020075425992741

    Samuel T

    3

    1 year ago

    Detaching components, or deleting components without deleting all instances
    Hi, turned my input field into a component and I could not revert that, I wanted to just detach the instance I converted and delete the component itself but I could not do that. Any help?
  • nix.nz-1275001570118860841

    Marko

    11

    1 year ago

    Login component export
    Hi there! I’ve created a component for logging users in using a standard email and password form, with Supabase as my backend auth. It works great in toddle, but when I export the component script and place it on my Webflow website, it doesn’t seem to work; error messages from the console below.

    I’m aiming to create my own solution instead of using Memberstack or Outseta so I can have more freedom in how users log in and interact with their profile data. All the authenticated components will be made in toddle. The website is already built in Webflow, and the client is keen to stay with it.
  • toddledoodle-1274915129749672039

    m

    11

    1 year ago

    Prevent simultaneous audio playing
    Hi, I am brand new to toddle and web app dev. I created an repeated item audio playlist with src from Airtable API. How do I prevent the audio to play simultaneously? Thank you for your help!
  • jubilant_courgette_93644-1274697754823757874

    Dov

    10

    1 year ago

    Visually work with multiple elements on one page
    Hi

    Is there a video to explain how to work with elements that can be conditionally displayed on a page.

    For example if I have 2 buttons that display separate forms but placed in the same potion on the page. How would I be able to see them?
  • needtheanswers-1274692485511118940

    needtheanswers

    1
    4

    1 year ago

    reuse layouts?
    Hi,
    I‘ve managed to make buttons and inputs reusable using attributes but I would like to know if it is possible to make layouts reusable.
    Example: I have a div component with 2 columns. Now I would like to reuse the div on Page X and insert other divs and content.
    How do i go about that?

    Thanks a lot 🫶
  • hoophlungpoo-1274497050716799017

    hoophlungpoo

    1

    1 year ago

    Having trouble logging in
    The magic link email isn't coming through right away, and I think it's expiring before I can click it... thoughts?
  • patrickmast-1274428577865138288

    Patrick Mast

    3

    1 year ago

    Username via slug?
    I have a sample app: https://slug_user.toddle.site/
    It features a variable "slug" that is concatenated within the H1 string to display "Welcome User".
    My goal is to use the slug as the username.
    For example:
    - https://slug_user.toddle.site/Andreas should show "Welcome Andreas"
    - https://slug_user.toddle.site/Kasper should show "Welcome Kasper"
    How can I do this?
  • asad_90597-1274395998998757409

    asad

    31

    1 year ago

    How do display this data into an interactive products ordering
    `
  • flo_nocode-1274352775828078683

    FLOnocode

    6

    1 year ago

    Toddle component to Framer component customisable is possible ?
    Hi,

    I have question please. By example, I want create a Button with Scramble Text with duration to 7 second et After that text appeart.
    But I want the text can be customise by anyone.

    This button will be a hover effect who change colors of background And text.

    This component can be available in a tool like framer or webflow and keep possibility to change any variable of my component or its impossible

    If its possible how we can do make something like that.

    Thanks for return
  • uunicode-1274310112143609866

    unicodes

    98

    1 year ago

    Why session value takes too long to load?
    In the login page I save the user ID in the session to easily perform checks on the website. After the value is stored in the session, the new page is loaded where I retrieve the user ID from the session and make the main query to load the main information for that page. It fails because the API loads faster than the information from the session. I tried to display the session value, and initially, it is null, then it loads the value. Why is it null for 0.3/0.5 seconds before loading the real value? Shouldn't it be real-time since it is saved in the session (on the browser)? Delaying the main query for 0.3/0.5 seconds to allow the session to load would increase the page loading time too much. Is there a solution to retrieve that value instantly? I tried in the loading page event save the session in a variable, than calling the API with the value from the variable and it works, but takes much time to load the page.