JetFormBuilder Crash Course
1:01:54
Жыл бұрын
How To Install JetFormBuilder
2:13
2 жыл бұрын
Пікірлер
@ChristiaanKoppelaar
@ChristiaanKoppelaar 3 күн бұрын
Superb tutorial. Especially because it's fast and without all kinds of unnecessary nonsense. Thumbs up!
@praisedaymichael
@praisedaymichael 5 күн бұрын
Great tutorial. Thanks
@infomagnat
@infomagnat 6 күн бұрын
Great and it worked now my question is can we add horizontal scrolling for mobile devices?
@sepehrtalebi7278
@sepehrtalebi7278 8 күн бұрын
Mine disappears but dont show up the thnk you... Just an empty box what should i do?
@HelaG50
@HelaG50 9 күн бұрын
I have two forms. The second form takes presets from the first form. I have a textarea field in the first form which I need it to be converted into a checkbox field in the second form (One line in the textarea field becomes one checkbox field in the second form). Can you direct me to the resource which can help me do this even if it is a code?
@Moo2az
@Moo2az 14 күн бұрын
nice but it's dosn't work on mobile ??
@Will-nf9os
@Will-nf9os 23 күн бұрын
Awesome guide! Works for posts. Any idea on how to order by random for user query, i have spent hours & hours on it, no solution.
@MatthewQuinlan-r9e
@MatthewQuinlan-r9e 24 күн бұрын
Fantastic tutorial, really like your style for explaining how it works. Clear and quick. Many thanks :)
@LiorRafael
@LiorRafael 25 күн бұрын
Hey Champ! I need your help with jet engine Can you help me please?
@DipeshSharma93
@DipeshSharma93 25 күн бұрын
Your video is the only video which makes it possible for me to design like it, thank you so much. Hope to see more fun and creative ideas for Elementor widgets.
@rg-web-design
@rg-web-design Ай бұрын
Is there a way to show or hide a listing grid header depending on whether or not the grid has any content? Eg; I have two listing grids on a page. Above Listing Grid 1, I want a header saying 'Available Now'. Above Listing Grid 2, I want a header saying 'Coming Soon'. But if there are no posts in the Coming Soon grid, I want the Coming Soon heading to dissappear. Thank you.
@crocomentor
@crocomentor 29 күн бұрын
watch this video kzbin.info/www/bejne/mHzGg2ChfrSGn6M
@miciuzproductions
@miciuzproductions Ай бұрын
To me it just works when I'm logged in, what's missing?
@crocomentor
@crocomentor 29 күн бұрын
It should work whether you are logged in or out. Ensure the page with these effects is not restricted to logged-in users only
@miciuzproductions
@miciuzproductions 25 күн бұрын
@@crocomentor I understood why: there were "custom messages" turned on within Elementor form.
@miciuzproductions
@miciuzproductions 25 күн бұрын
I was wrong, the bug persists event with "custom messages" turned off. 😕
@crocomentor
@crocomentor 25 күн бұрын
try creating a brand new page and use my template see if it will work filenewcreate.com/form-2-message-demo/
@miciuzproductions
@miciuzproductions 24 күн бұрын
I can't upload ("Invalid template type" message)
@markusnilsson3237
@markusnilsson3237 Ай бұрын
Can you guide me how to setup a back to the top inside a container with scroll enable?
@crocomentor
@crocomentor Ай бұрын
try this: filenewcreate.com/scroll-con-top/
@eafdafev
@eafdafev Ай бұрын
Great tutorial, thank you. Here is the minor issue I'm experiencing and an example. I have a large hero image with a text container on the left side of the page that uses your code to expand the text. When the webpage initially loads, the entire length of text flashes all the way open and then closes up. Is there a way to prevent this flash of all the text as the page loads. Im using WP rocket to speed up the site, I thought I would mention that in case you're aware of a conflict that might cause this minor issue. Thanks
@crocomentor
@crocomentor Ай бұрын
Thank you for pointing that out. I understand the issue you're experiencing. It's a bit tricky to address, but you can try using the code below. This approach might still cause a minor jump; however, it will initially display a minimized version before transitioning to the closed state. Give it a try while I work on finding a more seamless solution. Here’s the code: <style> /* Initially hide the text editor */ .your-text-editor-selector { display: none; } </style> <script src="code.jquery.com/jquery-3.6.0.min.js"></script> <script> jQuery(document).ready(function($) { // Initial state var isExpanded = false; var $textEditor = $('.your-text-editor-selector'); // Ensure this is your actual selector var $button = $('.your-button-selector a'); // Ensure this is your actual button selector // Apply initial height restriction $textEditor.css({ 'max-height': '100px', 'overflow': 'hidden', 'position': 'relative' // Add relative positioning }); // Add gradient overlay pseudo-element $textEditor.prepend('<div class="gradient-overlay"></div>'); // Apply gradient overlay style $('.gradient-overlay').css({ 'position': 'absolute', 'top': '0', 'left': '0', 'width': '100%', 'height': '100%', 'background': 'linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%)', 'pointer-events': 'none' // Allow clicks to pass through the overlay }); // Reveal the text editor after applying initial styles $textEditor.show(); // Button hover effect $button.hover( function() { $(this).css('cursor', 'pointer'); // Set cursor to pointer on hover }, function() { $(this).css('cursor', 'auto'); // Reset cursor to default when not hovering } ); // Button click action $button.click(function() { if (isExpanded) { // Collapse $('.gradient-overlay').show(); // Show the gradient overlay $textEditor.animate({maxHeight: '100px'}, 500); // Animate height change isExpanded = false; $button.text('read More'); // Optionally change button text } else { // Expand $('.gradient-overlay').hide(); // Hide the gradient overlay var fullHeight = $textEditor.prop('scrollHeight') + 'px'; $textEditor.animate({maxHeight: fullHeight}, 500); // Animate height change isExpanded = true; $button.text('read Less'); // Optionally change button text } }); }); </script>
@barkster
@barkster Ай бұрын
On mobile, is there a way to make it scroll up the rest of the page when you get the bottom of the section. I find you have to click outside the box to get the page to scroll up after u hit the bottom of the section. Don't think most users would know to do that on mobile.
@crocomentor
@crocomentor Ай бұрын
try this: filenewcreate.com/scroll-con-top/
@Dana-ek9nw
@Dana-ek9nw Ай бұрын
I can't find the option of jet Engine
@crocomentor
@crocomentor Ай бұрын
JetEngine is a plugin from Crocoblock. Just make sure it's installed on your computer crocoblock.com/plugins/jetengine/
@FhinqMedia
@FhinqMedia Ай бұрын
Great little tutorial and code! In addition the webkit CSS code did nothing in the custom CSS of the container for me. I had to put it in my Theme's custom CSS to get it to respond. Just a tip for people who also had the same problem.
@belzebeta
@belzebeta Ай бұрын
Thank you so much for this tutorial! Saved my life!
@OXRHighlights
@OXRHighlights Ай бұрын
i have a question, there is a 'Brands' type post below your custom post type, i want to know if that is taxonomy or how do we create that
@crocomentor
@crocomentor Ай бұрын
yes its a taxonomy, check this video out: kzbin.info/www/bejne/h6esgpt8ideSl7M
@saadpeerzada6660
@saadpeerzada6660 Ай бұрын
your button doesn't work bro, fix your site first please
@crocomentor
@crocomentor Ай бұрын
it does work on my end, but here is the code: .scrollcon { max-height: 40vh; /* Set the maximum height of the container to 60% of the viewport height */ overflow-x: hidden;/* Prevent horizontal scrolling */ overflow-y: scroll;/* Enable vertical scrolling within the container when content exceeds its height */ border: 1px solid #ccc; /* Border style for the container */ border-radius: 10px; /* Applies a border-radius to the scrollbar track */ } .scrollcon::-webkit-scrollbar { width: 14px;/* Sets the width of the scrollbar */ } .scrollcon::-webkit-scrollbar-track { background: BLACK; /* Sets the background color of the scrollbar track */ border-radius: 10px; /* Applies a border-radius to the scrollbar track */ } .scrollcon::-webkit-scrollbar-thumb { background: blue; /* Sets the background color of the scrollbar thumb */ border-radius: 10px; /* Applies a border-radius to the scrollbar thumb */ }
@dragon3602010
@dragon3602010 Ай бұрын
Awesome thanks, is it possible when i click on the labels, it's go to the respective inputs ?
@jeaniusworks
@jeaniusworks Ай бұрын
Fantastic tutorial video! Thanks for being so thorough. You answered all my questions.
@88ikky
@88ikky Ай бұрын
Hey! Thank you for your tutorial. However, the media field placeholder is not removed after uploading an image. Any idea why?
@crocomentor
@crocomentor Ай бұрын
Yeah, I see what you're saying. I'll make sure to fix that up in the future. In the meantime, here's another option you might like even better. Check out the KZbin video here:kzbin.info/www/bejne/ooDKma2CnrdqabM. Thanks for letting me know!
Ай бұрын
Amazing. Code working smoothly
@uzumakishikamaru4709
@uzumakishikamaru4709 Ай бұрын
But when i click the these grid, it directs me to archive that can't be edited, that looks terrible 😭😭 how can i customize this tag archice??
@mariakw8926
@mariakw8926 Ай бұрын
I made inside a loop item but as the component repeat it self inside de page it opens just fine but everytime I click on the button the page scrolls to the top. Do you have any idea how to fix? And thank you so much for this content.
@crocomentor
@crocomentor Ай бұрын
To fix the jump, delete the hashtag in the button link field. prnt.sc/nuyjSP2tdR7R
@mariakw8926
@mariakw8926 Ай бұрын
@@crocomentor It worked, thank you so much!
@crocomentor
@crocomentor Ай бұрын
You're welcome!
@mariakw8926
@mariakw8926 Ай бұрын
@@crocomentor Hey another one - I use this to create a loop item, and then apply the taxonomy filter (example of options in the filter: All, A, B, C) When is on all that is default and the first one it works perfectly but when I select the option A at the filter does not work anymore (I make the hover version). The url changes when the filter it's applied. Dont know if that could be a problem.
@crocomentor
@crocomentor Ай бұрын
Unfortunately, the unfold effect doesn't work well inside loops, but this is what you can try doing:elementor taxanomy filter doesnt have a reload option only ajax so You need to create a taxonomy filter with JetSmartFilters and set the apply type to 'reload'. Don't forget to toggle on the 'show apply button, it should work prnt.sc/AQbZxDHtwgBg
@aymericzambo1914
@aymericzambo1914 Ай бұрын
Great stuff! Thanks a million!
@AnnetteSpurr
@AnnetteSpurr 2 ай бұрын
How do we install your Unfold template once we've downloaded it?
@crocomentor
@crocomentor 2 ай бұрын
filenewcreate.com/elementor-21164/
@AnnetteSpurr
@AnnetteSpurr 2 ай бұрын
@@crocomentor Very helpful. Thanks so much.
@rmyantilable
@rmyantilable 2 ай бұрын
Hello, your video is very good but I have a question, the checkbox field that you have in the CPT and form I saw that in the video the data was not recorded when you did the process, could it be an error in the process?
@crocomentor
@crocomentor 2 ай бұрын
Thank you for your feedback on the video! the issue is not an error in the process but rather a setting in the meta field. To resolve this, please follow these steps: Go to the checkbox meta field you created for your cpt in the backend of your site. Ensure that the "Save as array" option is enabled. This should resolve the issue and ensure that the data is correctly recorded.
@crocomentor
@crocomentor 2 ай бұрын
prnt.sc/xh3Sx1tqOQu4
@BornSolutions
@BornSolutions 2 ай бұрын
I need scroll, but a horizontal scroll. Can you help me?
@crocomentor
@crocomentor 2 ай бұрын
For horizontal scroll, make sure to set the direction of your child container to row and then use the following code, which includes comments explaining each parameter: .scrollcon { max-width: 40%; /* Set the maximum width of the container to 40% of its parent element */ overflow-x: auto; /* Enable horizontal scrolling */ overflow-y: hidden; /* Disable vertical scrolling */ border: 1px solid #ccc; /* Border style for the container */ border-radius: 10px; /* Applies a border-radius to the container */ display: flex; /* Use flexbox to manage the items inside the container */ flex-direction: row; /* Ensure items are arranged in a row */ flex-wrap: nowrap; /* Prevent items from wrapping to the next line */ } .scrollcon > * { flex-shrink: 0; /* Prevent child elements from shrinking */ margin-right: 10px; /* Add some space between items for better visibility */ } .scrollcon::-webkit-scrollbar { height: 14px; /* Sets the height of the horizontal scrollbar */ } .scrollcon::-webkit-scrollbar-track { background: black; /* Sets the background color of the scrollbar track */ border-radius: 10px; /* Applies a border-radius to the scrollbar track */ } .scrollcon::-webkit-scrollbar-thumb { background: orange; /* Sets the background color of the scrollbar thumb */ border-radius: 10px; /* Applies a border-radius to the scrollbar thumb */ } /* Mobile adjustments */ @media (max-width: 768px) { .scrollcon { max-width: 100%; /* Allow full width on mobile */ flex-direction: row; /* Ensure items are still arranged in a row on mobile */ } }
@madumedodo
@madumedodo 2 ай бұрын
Hi! What do you use for the frontend design?
@ohadzzohar82
@ohadzzohar82 2 ай бұрын
Hey, after adding the code and using text fields it works. but when adding a mandatory acceptance checkbox, it works too, but if i check and uncheck the box the submit button still stays enabled and users can click the button. Can you help with this?
@christopherc9935
@christopherc9935 2 ай бұрын
can you do this intermittently
@crocomentor
@crocomentor 2 ай бұрын
you can use the Pulse Animation(sporadically) version filenewcreate.com/css-for-elementor/
@alizex2880
@alizex2880 2 ай бұрын
thank u love
@SadraSharifi1992
@SadraSharifi1992 2 ай бұрын
doesn't work with bricks, unfortunately
@miki_bas
@miki_bas 2 ай бұрын
מה קורה אח. מכיר אפשרות להפוך את הליסט של JET בדסקטופ במצב רגיל ובמובייל להפוך אותו לסליידר? כמובן מבלי לשכפל את הוידגט (:
@miguelmarinho5267
@miguelmarinho5267 2 ай бұрын
You're amazing my bro!
@pixeleartebr
@pixeleartebr 2 ай бұрын
and how to calculate repeating fields I have a number field that is "Quantity". and the other is unit value... that is, it would be "quantity" multiplied by the unit value of that item. and as it is an item that will be added to the repeater, it would be several items, accompanied by "Quantity x Unit value". How do you calculate it?
@DeepakGuptaDeeps
@DeepakGuptaDeeps 2 ай бұрын
How does it work with Section and Inner Section? Could you please guide us? Your code is not working with Section and inner section.
@JOTAsoy
@JOTAsoy 2 ай бұрын
what if I want a specific checkbox not following that css? Like a privacy policy at the end
@crocomentor
@crocomentor 2 ай бұрын
watch this video filenewcreate.com/form-style-selector/
@JOTAsoy
@JOTAsoy 2 ай бұрын
@@crocomentor This is great!!! But I'm using the image one... Thanks anyway!
@VanPham-jw2qq
@VanPham-jw2qq 2 ай бұрын
This is fantastic, just what I was looking for! However after adding this to my form, the hamburger menu icon on mob has disappeared. It still works if you click on the space but the icon is invisible.
@Hanfintelligenz
@Hanfintelligenz 2 ай бұрын
How its possible to make a seperate style for the privacy-policy checkbox on the end?
@crocomentor
@crocomentor 2 ай бұрын
watch this video filenewcreate.com/form-style-selector/
@Hanfintelligenz
@Hanfintelligenz 2 ай бұрын
Thanks! Im not understanding the code... Just want to restyle the checkbox on the end of my multistep form@@crocomentor
@crocomentor
@crocomentor 2 ай бұрын
Simply paste the new code into the 'Custom CSS' tab. Next, select the checkbox field you want to style, navigate to the 'Advanced' tab, and name the ID as 'stylex'. That's it!
@crocomentor
@crocomentor 2 ай бұрын
prnt.sc/BfAfJX6Yaqn0 prnt.sc/OzwjHzEzgD9s
@castillosox
@castillosox 2 ай бұрын
Code no found, friend.
@crocomentor
@crocomentor 2 ай бұрын
its in the description but here you go, look for vertical scrollbar: filenewcreate.com/elemento-code/
@anoukslaman1412
@anoukslaman1412 2 ай бұрын
hey man thank you for the tutorial, is there a way to do the same to a Jetform? or to make the elementor form stay up longer than 4 seconds after sending
@daniel.trapanese
@daniel.trapanese 3 ай бұрын
Excellent tip!
@gieselman
@gieselman 3 ай бұрын
can someone help me understand the purpose of the underscore?
@sofiah5243
@sofiah5243 3 ай бұрын
Is there a way to make the thank you message only show for say 3 sec and then the form is back again? Thank you!
@AlexanderLugoIng
@AlexanderLugoIng 3 ай бұрын
Do you have a demo of the address autocomplete addon?
@ramaslan
@ramaslan 3 ай бұрын
Your videos are excellent, thank you for this. I would like to ask a question. Let's say a user enters a URL from external sources on Jetformbulder. How can we know if this URL is infected with viruses? Let's say, the url of the facebook profile must be entered and the user enters his own url, not on facebook, how can we make these better for security in jetformbulder?
@toni_jaay
@toni_jaay 3 ай бұрын
Thank you!!!