Search the Community
Showing results for 'autoplay summary'.
-
Summary Block: How can I set the Carousel to "autoplay"?
jasonbarone posted a question in Coding and Customization
I love the new Summary Block carousel. I'm curious if it's possible to "autoplay" the carousel much like galleries can do. I know this is possible using Developer Platform galleries, but would love to be able to use with Block Carousels. -
Site URL: https://finch-deer-tt6j.squarespace.com Hi! I am trying to set a carousel summary to autoplay on the homepage. For context (if it helps) I put quotes in separate blog posts and then created a summary carousel to display them. Currently, it does not move through the different quotes (i.e. "blogs") automatically. There is just a small navigation scroller above it to manually scroll through them (see image below). Can anyone help? The website is using version 7.1. It is in the trial phase still so I cannot make it public yet. I can provide the password if needed to access i
-
Hi there! Is there anyway to make a summary carousel autoplay in the adirondack template? Thanks in advance! -Kristen
-
Hey, everyone! I have a Squarespace 7.1 site and I'm having an issue. I have a gallery block which I have set to "slideshow:reel" gallery type. I want the images to autoplay (which was a feature available in previous versions). I've tried the code injection from this thread, but I haven't had any luck getting it to work: https://forum.squarespace.com/topic/26409-summary-block-how-can-i-set-the-carousel-to-autoplay/ How can I get this gallery to autoplay/auto-scroll? Thank you!
-
Hi, I was wondering if there was any way to have a Vimeo video autoplay in Summary: Wall? I have know I need to embed a video into a regular page with autoplay feature turned on, but seems like no way to have them autoplay in Summary: Wall? I did add the video in as an embedded file trough gallery, but seems my only option is if there was some code to enable it. Thanks for your help
-
Auto Scroll Carousel Block Squarespace 7.1
rebeccagracedesigns replied to sorethumb's question in Coding and Customization
For anyone still looking, I found a workaround for autoplaying a Summary Carousel Block. It autoclicks the next button every three seconds. Inject this is Settings > Advanced > Code Injection > Header <!-- jQuery Library --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> and this in Settings > Advanced > Code Injection > Footer <!-- Summary Block Autoplay --> <script> setInterval(click, 3000); function click() { $(".summary-carousel-pager -
Hello - I used the following code found on another thread to auto-scroll my testimonials (I used a carousel summary block). It works great. However, I'm hoping someone can help me figure out how to slow it down. It's currently scrolling every 3 seconds. FYI - I'm new to using code. ๐ Thanks a ton! <script> Y.on('domready', function () { var galleries = Y.Squarespace.GalleryManager.getGalleries(); for( i = 0; i<galleries.length; i++){ galleries[i].setAttrs({"autoplay":true}) } }); </script>
-
Summary Block: How can I set the Carousel to "autoplay"?
xallarap replied to jasonbarone's question in Coding and Customization
Hi @tuanphan, I am also trying to make a summary carousel autoplay in 7.1, would you be able to take a look at this page? Thanks! https://triceratops-maroon-kxrm.squarespace.com/home pw: nailed -
Summary Carousel Autoplay
derricksrandomviews replied to Kpeterson1716's question in Coding and Customization
I read that this code works, its old so I am keeping my fingers crossed that it is still good. You place it in the advance code injection header of your summary page: script> Y.on('domready', function () { var galleries = Y.Squarespace.GalleryManager.getGalleries(); var duration = 4000; var gallery=galleries[0]; var carousel=gallery["gallery-design"]; var totalGroups=carousel.get('totalGroups'); var currentGroup=0 var container=gallery.get("container"); var nextBtn=Y.one(gallery.get("elements.next")._nodes[0]).on("click",funct -
Summary Block: How can I set the Carousel to "autoplay"?
tuanphan replied to jasonbarone's question in Coding and Customization
If you share link to your site, I can give the code to make gallery reel autoplay. Can you share link to page where you use summary block? -
Summary Block: How can I set the Carousel to "autoplay"?
crrjuilliard replied to jasonbarone's question in Coding and Customization
is there a way to make the summary carousel loop/repeat items when you get to the end but not autoplay? -
Summary Carousel Autoplay
Kpeterson1716 replied to Kpeterson1716's question in Coding and Customization
Thanks so much! So, it works when I am viewing the summary itself, but when I add the summary to a page it doesn't autoplay. Any suggestions? -
I'm using the code found here: https://answers.squarespace.com/questions/46060/can-we-set-a-summary-block-carousel-to-autoplay.html Is there a way to apply this to all the carousels on my page/site?
-
Hi there, I'm trying to make my blog landing page have a headline at the top of the page that is populated by featured blog posts. So I thought about putting a summary block at the top but the images don't bleed through as background images. Do you know a way to have the main image of a blog post, to be used as a full-bleed background image in a auto-playing carousel? I hope that comes across somewhat clearly? Haha I've included an image below to give you hint of what I mean. And so that would be a featured post and it would auto play to the next summary post.
-
Summary Block: How can I set the Carousel to "autoplay"?
JonJonJon replied to jasonbarone's question in Coding and Customization
Moving the arrows I decided to leave the arrows in, because as mentioned the autoplay only works on the first interaction with the carousel. This code I got from: https://thirtyeightvisuals.com/blog/custom-arrows-testimonial-carousel-squarespace Which also outlines more customisations to the carousel should you wish /////TESTIMONIALS ARROWS/// .summary-carousel-pager { position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100% !important; z-index: 1; } .sqs-gallery-design-carousel .sqs-gallery-controls .previous { float: left; } .sqs-gall -
Summary Block: How can I set the Carousel to "autoplay"?
aakriti replied to jasonbarone's question in Coding and Customization
Hi @wtcoc @benf @ghostcat,I've tried this code (this one here => Answer by WTCOC ยท Nov 13, 2017 at 04:24 PM) and the very first one on this post by @ghostcat and it seems to work on my site while I'm logged in inside Squarespace, but when I test it from the out, it doesn't scroll.I'm using Bedford. Also, I don't even need it to loop - would be great, but not fussed about the loop. It can be a simple autoplay for my summary carousel (of testimonials saved as 'blogs'). Could you help? Here's the page in question: innovatorsbox.comThanks in advance. -
Summary Block: How can I set the Carousel to "autoplay"?
clayyount replied to jasonbarone's question in Coding and Customization
You can use this header inject code to get the summary block carousel on your page to autoplay: <script> Y.on('domready', function () { var galleries = Y.Squarespace.GalleryManager.getGalleries(); for( i = 0; i<galleries.length; i++){ galleries[i].setAttrs({"autoplay":true}) } }); </script> Getting it to loop is trickier though because the "loop" gallery attribute doesn't work correctly. Since Squarespace's carousel loop option doesn't work the way it's supposed to, I had to basically override Squarespace's gallery controls and set my -
@gpelaia See https://answers.squarespace.com/questions/46060/can-we-set-a-summary-block-carousel-to-autoplay.html. This works.
-
@gpelaia See https://answers.squarespace.com/questions/46060/can-we-set-a-summary-block-carousel-to-autoplay.html. This works.