How To Create An Unfold Widget With Elementor For Free

  Рет қаралды 8,101

Croco Mentor

Croco Mentor

Жыл бұрын

in this video we going to create an unfold effect using elementos containers and a litle bit of code
important: delete the hashtag in the buttons link field
link to the code:
filenewcreate.com/elemento-code/
download my unfold template:
filenewcreate.com/unfold-temp...

Пікірлер: 76
@toni_jaay
@toni_jaay 3 ай бұрын
THANK YOU THANK YOU THANK YOU. So easy to follow. Clear and concise
@belzebeta
@belzebeta Ай бұрын
Thank you so much for this tutorial! Saved my life!
@multa7053
@multa7053 4 ай бұрын
Works perfectly fine. And thanks for the # on the button comment. Sometimes we forget about the most logical and easiest things when going to solve issues... Great video!
@user-tk8pq3uk9r
@user-tk8pq3uk9r 8 ай бұрын
I was doing that with CSS and wasn't as smooth as I wanted. Your video is fantastic ! Thanks again
@crocomentor
@crocomentor 8 ай бұрын
You're welcome! Thanks for the feedback.
@aymericzambo1914
@aymericzambo1914 Ай бұрын
Great stuff! Thanks a million!
@dontopa128
@dontopa128 8 ай бұрын
works flawlessly. very good tutorial. im impressed. thanks a lot bro :DD
@crocomentor
@crocomentor 8 ай бұрын
Thank you for your feedback! I'm really happy to hear that the tutorial worked well for you.
@ninemarketer
@ninemarketer Жыл бұрын
The code is working like a charm just make sure you remove any link from the button to avoid when clicking the button back automatically to the TOP of the page Thank you.
@crocomentor
@crocomentor Жыл бұрын
brandoope im happy it works for you, regarding the jump i forgot to do it in the video, added in the video decription
@G3d3cSke
@G3d3cSke 5 ай бұрын
Unfortunately, it didn't work for me either, but since you uploaded the template, it works. Thanks for this good template!
@ysa3426
@ysa3426 5 ай бұрын
Where and how do we upload the template?
@danielfagav
@danielfagav Жыл бұрын
Master!! Thank you so much!
@crocomentor
@crocomentor Жыл бұрын
my pleasure, I'm glad you liked it
@advanced-developers
@advanced-developers 9 ай бұрын
Good Work
@ElementoryMyDearWatson
@ElementoryMyDearWatson 8 ай бұрын
Fantastic! Thanks so much. Instant sub :)
@crocomentor
@crocomentor 8 ай бұрын
@ElementoryMyDearWatson glad you liked it
@yoonssam_kr
@yoonssam_kr 6 ай бұрын
Excellent guidance! In the 3rd hoverbtn method, can you please teach us extra on how to make the unfolded content continue to show unless next 4th listing (let's say we have 4 containers in total) is hovered? Thank you!
@empress4140
@empress4140 Жыл бұрын
thank you~
@user-jc2cx6yn2o
@user-jc2cx6yn2o 4 ай бұрын
Exactly what I need. But I have one issue: If I set the hidden part to full width the effect doesn´t work anymore. Only if I set boxed style for the hidden content. How can I fix that?
@YaronRosen
@YaronRosen Жыл бұрын
thank you so much!! i just opened a ticket for elementor with kind of a similar question, how can i reach out to you to talk with you?
@nelligantetrault2135
@nelligantetrault2135 11 ай бұрын
Helllo! First thanks for the time you put into this video. I've seen in the comment many ppl struggling (like me) : 2min46 I think is where the mistake happen. Looking at the navigator, the hidden content become nested into the unfold container whitch was not the case previously into the explanation?
@raoq1028
@raoq1028 4 ай бұрын
A bit of a late answer but yes you're right! The button trigger didn't work for me until I drop the hidden content into the unfold container. Thanks a lot!
@PintoTV
@PintoTV 3 ай бұрын
Love your amazing tutorials! Quick question, i want to use the firs unfold effect but make it on a text editor widget and not on a container, i tried adding the CSS Class to the text editor widget but it's not working, i also tried to change the classes in the SCRIPT code but with no luck. Can you help me with this? Thanks
@crocomentor
@crocomentor 3 ай бұрын
i'm making a tutorial for you coming soon
@PintoTV
@PintoTV 3 ай бұрын
@@crocomentor you are the best!!!!
@crocomentor
@crocomentor 3 ай бұрын
kzfaq.info/get/bejne/m7CpjbGcnLjUoJs.html
@Kadhimiya
@Kadhimiya Жыл бұрын
Hello This is great Only when the container is closed, the end of the border can gradually disappear I would be very grateful if you make the codes in this way
@burnhardo
@burnhardo 5 ай бұрын
this
@ericm7593
@ericm7593 Жыл бұрын
I was looking for this unfold effect in plugins for a new design but they are not so flexible! although I repeated the process a dozen times! but I cannot make it to work. do you have any pointers I might do wrong?
@crocomentor
@crocomentor Жыл бұрын
hi eric, make sure 1.you are using containers 2.you are naming the right containers with the right css class 3.the button is in the right container and has a css class name 4.try first the box trigger version tell me if it helped
@ALGOChannel
@ALGOChannel 3 ай бұрын
Great tutorial! I have one request though, is it possible to use an icon instead of text or to just remove the "show more" and "show less" option from the code and just keep the button unchanged? Could you help me out with this? It would be a great help. Thank you!
@crocomentor
@crocomentor 3 ай бұрын
Great to hear you found the tutorial helpful! let me try to help you. For the first option, if you prefer not to display the "show more" and "show less" text, you can achieve this by giving the text the same color as the button. This will effectively make the text invisible while keeping the button unchanged in appearance. Regarding the second option, replacing the text with an icon is absolutely possible. I've updated the code for you to incorporate icons instead of text. To do this, you'll need to add the desired icon SVG to your media library. Once you have the link to the icon, simply replace the icon URLs in the code with the links to your icons. Additionally, you can control the size of the icons in the code. Currently, the size is set to 20 pixels by 20 pixels. Feel free to adjust this size according to your preferences. here is the new code: .contentcon > .e-con-inner > .e-con-boxed.e-con { max-height: 350px; overflow: hidden; transition:.4s ease; } document.addEventListener("DOMContentLoaded", function() { var btns = document.querySelectorAll('.openbtn'); for(let btn of btns){ let self = btn, // Define icon URLs iconCloseBtn = 'filenewcreate.com/wp-content/uploads/2024/04/arrow-narrow-down-svgrepo-com.svg', iconOpenBtn = 'filenewcreate.com/wp-content/uploads/2024/04/arrow-up-svgrepo-com.svg', // Specify the size of the icons iconSize = 'width:20px; height:20px;', // Example size, adjust as needed currentBtnIconContainer = self.querySelector('a'), currentTxt = self.previousElementSibling.querySelector('.e-con-inner > .e-con-boxed.e-con'), currentTxtHeight = currentTxt.scrollHeight; // Set the initial icon to the "close" icon currentBtnIconContainer.innerHTML = ''; self.addEventListener('click', function(){ if(currentTxt.getAttribute('style')){ // Set the innerHTML to use the "show more" icon with specified size currentBtnIconContainer.innerHTML = ''; currentTxt.setAttribute('style', ''); } else { // Set the innerHTML to use the "show less" icon with specified size currentBtnIconContainer.innerHTML = ''; currentTxt.setAttribute('style', 'max-height:' + currentTxtHeight + 'px'); } }); } });
@crocomentor
@crocomentor 3 ай бұрын
prnt.sc/o2KVlsJFGTaI
@ALGOChannel
@ALGOChannel 3 ай бұрын
@@crocomentor thank you very much!
@edobarriosruiz
@edobarriosruiz 9 ай бұрын
I did everything in the video and it works 100%. Thanks for sharing. But I have a question: How to do the same but with sites with Elementor without the version of the containers and the inner sections exist?
@crocomentor
@crocomentor 9 ай бұрын
You don't want to use containers or inner sections?
@edobarriosruiz
@edobarriosruiz 9 ай бұрын
@@crocomentor The site has inner sections. It is not created with containers and therefore the code would not apply. The question is: how to solve or adapt what you explained in your video to this type of situation?
@crocomentor
@crocomentor 9 ай бұрын
yes, you can make the unfold effect work with inner sections(but with different code). But honestly, it's much smoother and easier with containers. I'd advise your client to switch over - it just works way better!, convert the section to containers on the site, is the best solution
@aljonoeskaaljonoeska914
@aljonoeskaaljonoeska914 10 ай бұрын
Hello, Can you please help me out with the button. Problem BUTTON TRIGGER: When i press on the button, the page slides all the way back up to the menu. It would be nice when I press on the button that it stays on the same spot. I would be happy with your feedback.
@crocomentor
@crocomentor 10 ай бұрын
select the button, in the content tab go to the link field and delete the hashtag prnt.sc/nuyjSP2tdR7R
@dontopa128
@dontopa128 8 ай бұрын
can we use image instead of text "show more"? i want to put image instead of text show more.
@ALGOChannel
@ALGOChannel 3 ай бұрын
I would also like to know this
@countbang1305
@countbang1305 10 ай бұрын
Works fine but I am having trouble making this full width. I need it to be full width. Please help. And thanks so much for the knowledge!
@crocomentor
@crocomentor 10 ай бұрын
hey, countbang made a video for you click this link filenewcreate.com/countbang
@countbang1305
@countbang1305 10 ай бұрын
@@crocomentor Thanks so much!!!
@kafetabooks
@kafetabooks Жыл бұрын
ok, como poner el texto que se ve en el tercer ejemplo un poco borroso
@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.
@aljonoeskaaljonoeska914
@aljonoeskaaljonoeska914 10 ай бұрын
Hello, I have found a problem in on of the buttons. Button triger en Hover trigger are working fine. Box trigger does not work. Can you please guide me in this one? Thank you in advance
@crocomentor
@crocomentor 10 ай бұрын
download and use my template filenewcreate.com/unfold-template/
@aljonoeskaaljonoeska914
@aljonoeskaaljonoeska914 10 ай бұрын
I downloaded as a zipfile....and what to do then with it?@@crocomentor
@mortensuperlite
@mortensuperlite 5 ай бұрын
Looks great until you try to change the button text color. It breaks. Why is button color set to white in the css?
@crocomentor
@crocomentor 5 ай бұрын
prnt.sc/9z-DCxD4HGvr
@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
@Frontier-Forever
@Frontier-Forever Жыл бұрын
When I click the button to show the content it works, but it scrolls to the top of the page. Is there any way to stop that?
@crocomentor
@crocomentor Жыл бұрын
thanks frontier forever for pointing that out i wasnt aware. to fix it select the button go to content and delete the hash tag from the link field that should do it and also i modified the code so go grab the new code filenewcreate.com/ulfold-effects-code/
@allyterry4753
@allyterry4753 Жыл бұрын
I followed the steps but when press the button text won’t open. Tried to place button under different container but then it would disappear completely. How can I make button work?
@crocomentor
@crocomentor 11 ай бұрын
I'm sorry to hear that download my unfold templates from the video filenewcreate.com/unfold-template/
@AnnetteSpurr
@AnnetteSpurr Ай бұрын
How do we install your Unfold template once we've downloaded it?
@crocomentor
@crocomentor Ай бұрын
filenewcreate.com/elementor-21164/
@AnnetteSpurr
@AnnetteSpurr Ай бұрын
@@crocomentor Very helpful. Thanks so much.
@virgilpillay
@virgilpillay 7 ай бұрын
Could this work inside a carousel?
@crocomentor
@crocomentor 7 ай бұрын
I checked, and unfortunately, it doesn't.
@andersjessen2385
@andersjessen2385 11 ай бұрын
Thank You for this, works almost perfect 🙂 On mobile (Iphone, Crome and Safari) i does not unfold completely. Do you have any idea why?
@crocomentor
@crocomentor 11 ай бұрын
i fixed it, go get the new code , it should work now
@zachmortimer
@zachmortimer Жыл бұрын
Can't get this to work followed everything in the video to a T. Even named all of my containers the same thing. *shrug*
@crocomentor
@crocomentor Жыл бұрын
zach it should work make sure the container structure and the css classes are correct maybe start with the version without the buttun see if that works.
@olutobifemi-oke3399
@olutobifemi-oke3399 Жыл бұрын
i could not get it to work
@crocomentor
@crocomentor Жыл бұрын
it should work follow my exact steps dont skip anything
@jenniferward6821
@jenniferward6821 11 ай бұрын
spent an hour could not get it to work - :(
@crocomentor
@crocomentor 11 ай бұрын
It's unfortunate that some users experience this issue, However, to simplify the process, I've created an unfold template that you can download. filenewcreate.com/unfold-template/
Show More/Show Less... using Elementor (Free)
14:53
Jim Fahad Digital
Рет қаралды 48 М.
Русалка
01:00
История одного вокалиста
Рет қаралды 5 МЛН
Who has won ?? 😀 #shortvideo #lizzyisaeva
00:24
Lizzy Isaeva
Рет қаралды 62 МЛН
LOVE LETTER - POPPY PLAYTIME CHAPTER 3 | GH'S ANIMATION
00:15
JetFormBuilder Crash Course
1:01:54
Croco Mentor
Рет қаралды 13 М.
How to Build Headers and Footers Using Elementor for FREE
23:07
Riad Mahmud
Рет қаралды 63 М.
Elementor Pro Forms Advance Features
5:04
Wordpress Page Builders Academy
Рет қаралды 426
Unfold Effect (Text Editor)
6:10
Croco Mentor
Рет қаралды 341
How To Create Read More Button Elementor Using CSS
5:02
WP Agent
Рет қаралды 27 М.
🔴 Elementor Accordion Section | Elementor Tips and Tricks
10:28
ProWebMentor
Рет қаралды 10 М.
Elementor Hide Or Show Section On Button Click 👍👍👍
12:34
System 22 Web Design | Divi Theme Elementor WP
Рет қаралды 35 М.