Help forum
- 301 redirects
Kamil
4 4 months ago
Hey ! Just wondering how you 're setting up 301 redirects with cloudflare . I 've tried a bunch of things , but it seems like it ’s not possible . Since toddle uses cloudflare with a proxied DNS A record , the requests bypass my cloudflare account and go straight to toddle ’s , so my redirect settings don ’t work . If I use proxied CNAME record , the redirects work , but then the images hosted on toddle returns 403 . Is there a way to make this work , or would it be better to look for an alternative to cloudflare ? - Getting the base64 from a Promise
Jehex
1 4 months ago
Hello , any ideas to how get the base64 of my image from a promise and send it to Xano ? Thanks you ! - Script TAG, how to add gtag in the script input.
unicodes
28 4 months ago
I added this code but isn 't working . <script async src = "google url " > < /script > <script > window .dataLayer = window .dataLayer | | [ ] ; function gtag ( ) {dataLayer .push (arguments ) ; } gtag ( 'js ' , new Date ( ) ) ; gtag ( 'config ' , 'G -4534543543543 ' ) ; < /script > Considering the script tag should be a tag I have deleted the script tags from the code but nothing is changing and isn 't working . I have this tag in the menu component because I want to add it in all pages and not adding using Head Assets . Is this possible ? - Can't make client project owner
NoCode ProCode
2 4 months ago
- Context in components
ssssadsadasd
4 4 months ago
I want to basically do what is currently doable with the toast plugin : we insert the toast element - > we put our elements of the page inside the toast element - > now the toast actions are available to all child elements . so what I do is [create a component ] ( https://toddle.dev/projects/moccasin_palpatine_chief_rook/branches/start/components/notification-popover?leftpanel=design&canvas-width=800&canvas-height=800&rightpanel=style&selection=nodes.KtbvoLP7IGXLZ44g6FDM2 ) - > set a workflow show -popover - > create a slot . in [the page ] ( https://toddle.dev/projects/moccasin_palpatine_chief_rook/branches/start/components/test4%20context?leftpanel=design&canvas-width=800&canvas-height=800&rightpanel=style ) , I put the reusable and add a child to it . now , I should be able to access the workflow that I created but I cant seem able to do it . what am i missing ? thanks - How do I get a repeat element to update when underlying variable is updated (without refreshing)?
rhymes
0 4 months ago
The repeat elements I have work as expected when populating directly from API output , but no longer dynamically update when instead using a variable (populated whenever the API is run ; done to potentially reduce the number of times the API is called / speed page load times ) . Other elements that directly use other variables updated similarly update dynamically (ie in text elements ) - just not repeat elements . In the attached screenshot - the slot numbers update dynamically , but not the actual items populated below . I have set a repeat key - and the elements are currently not a component . Appreciate the help ! - Duplicating Workflow for Records in CRM (Supabase)
Alex
3 4 months ago
Anyone have a creative way or just an idea of a workflow to allow my users to duplicated records in their CRM to make data entry /creation faster ? Video for context : https://www.tella.tv/video/streamlining-property-management-with-supabase-1lei - Checking checkboxes updates in the backend but not the frontend
R
23 4 months ago
Hi ! I built a checklist . I noticed that while the back -end updates correctly , the visual representation in the checkbox doesn 't always reflect these changes . I 'm trying to figure out why the checkbox in a row remains checked even when the item it belongs to moves down due to the item sorting . If anyone has insights on this issue & sees what I am overlooking , please let me know ! I have added a video to show what I mean : https://www.loom.com/share/3930db8c89094bb383bd285584e2c583?sid=98a4fdd8-5d33-4e1c-ae66-28358d4117d8 The overall setup is complex as it is an expandable list with expandable items , but I had the same issue before I added the expansion . Also please ignore /forgive the complexity of my app atm - the next item on my list is to change the parts that should be components to components - it is intimidating to take that step though . . . - Having trouble viewing pages in the editor with nested paths set up
Danny
5 4 months ago
Hi ! Hoping someone can help guide me in the right direction . I 'm creating a single page app with a nested structure like /path/:path_id/subpath/:subpath_id . I can use logic to show the correct pages according to the path and params . However , I 'm having trouble with viewing the pages in the editor when there is no subpath . To be clear , it works fine in the preview with actual data . For example , if I have something like /teams/123/projects/456 using the test params I see my project detail page in the editor . However , if I just want to view the teams and have /teams/123 where the subpath and :subpath_id are meant to be null , I don 't see anything in the editor because it doesn 't match my page . Is this because there 's actually no option to set a path param to null ? I can only leave it blank or add a string . Does anyone know if there 's a workaround because otherwise I can 't view my page in the editor without removing the params and re -adding them any time I need to edit something . Thanks for your help ! ! - HTML Block Component doesn't inherit styles
Kittiphum
6 4 months ago
I am using the HTML Block Component to display Rich Text . I want to change the font but it doesn 't inherit the styles - Issue When Cloning a Project in Toddle: How to Recover Lost Images?
Lucas
3 4 months ago
Hello , everyone ! How are you ? I developed a landing page and uploaded some images directly to Toddle . The problem arose when I cloned the project to another location , and the images didn ’t transfer . To make things worse , I deleted the original project . Is there any way to recover these images ? How can I prevent this issue in the future ? Is the only solution to upload the images again ? I appreciate any help ! - Unable to render Phosphor icons
Hanif
0 4 months ago
Hey guys , I 've managed to set up the header script to load the Phosphor icon library . In traditional development , icons should render whenever the appropriate class is applied to an element . However , that doesn 't seem to be the case in Toddle Dev . Am I missing something ? - Unable to specify Supabase magiclink redirect_to url
Jonathan Fors
2 4 months ago
Basically I 've got a request to /auth /v1 /magiclink containing redirect _to in the body along with the email , however when clicking the email link it does not redirect to the specified url . I 've been doing some tests and it seems it is defaulting to the url where the request was made from , e .g . if I fill in the sign in form and make the request on myapp .com /login then I am redirected to myapp .com /login and if I do it from myapp .com /another -url i am then redirected to that url . Anyone able to help with this ? For now I 've hard -coded the redirect url into my supabase email templates , which works I guess but isn 't ideal . - Search over multiple columns in Supabase freezes tab
Armand
6 4 months ago
I 've set up a GET request in the toddle API to search with a string over multiple columns in a Supabase table . And I got it to work , just after playing a bit with the search (changing search string , removing search string , adding new , etc ) it always freezes the tab . This happens on different browsers and also when testing on mobile . I have set up the autofetch to only be true when the search variable has a size greater or equal to 2 . See below how I 've set up the API . I 've used the Supabase docs to figure out how to query parameters and the fact that I get correct results when I do a search makes me think the issue is not there . - Input value is shown as input field in Xano on some network
Kittiphum
26 4 months ago
Hi there , My client told me about some cases where some of his customers could not sign up as long as they are in a wifi network . As soon as they disconnect and use mobile data it works . After investigating i found out that the password value of the sign up form is submitted to xano as a input field instead of an input value . Help is very much appreciated !