Buy me a coffee

Summary Carousel with more than five items

Summary Carousel can show 5 items/row.

Summary Carousel With More Than Five Items 01 Min

If you want to show more 5 items/row, you can use custom plugin, follow these steps.

Here, we will use List Section to sync posts in Summary Block, so you can show more 5 items/row (We will use CSS code to make List Style same as Summary Carousel)

Note: This will work with Blog Page or Product Page Only. If you use Summary Carousel with Events, this won’t work.

#1. First you need to find the Blog (or Store Page URL), which you used in the Summary Block.

In my example, we will use Store Page.

Click Gear icon

Summary Carousel With More Than Five Items 02 Min

and here is Store Page URL Slug

Summary Carousel With More Than Five Items 03 Min

#2. Add a List Section (in the position where you used the Summary Block Carousel)

Summary Carousel With More Than Five Items 04 Min

Choose People > Choose Section with (i) info, it is List Section

Summary Carousel With More Than Five Items 05 Min

Hover on Section > Click EDIT CONTENT

Summary Carousel With More Than Five Items 06 Min

In Design > Choose Carousel > Set Columns. With List Carousel, you can set to 6 columns

Summary Carousel With More Than Five Items 07 Min

Next, click Style to adjust Carousel Arrows

Summary Carousel With More Than Five Items 08 Min

Choose Bottom – Right

Summary Carousel With More Than Five Items 09 Min

#3. Install List Sync Plugin.

You can use code TUAN to get 10% discount.

Plugin will give you some code to add to Code Injection Header/Footer. Something like this.

Summary Carousel With More Than Five Items 10 Min

Summary Carousel With More Than Five Items 11 Min

#4. Edit List Carousel Section > Click Content > Title

Summary Carousel With More Than Five Items 12 Min

Enter this: {sync=/store-2}

Summary Carousel With More Than Five Items 13 Min

Result:

Summary Carousel With More Than Five Items 14 Min

You can disable this option to prevent cut off images on both sides

Summary Carousel With More Than Five Items 15 Min

#5. To increase number of columns > 6. You can use this code to Custom CSS box.

@media screen and (min-width:992px) {
section[data-section-id="66c304d0ec8151339f8baf37"] ul.user-items-list-carousel__slides {
    grid-template-columns: repeat(7,1fr) !important;
}
}

with section[data-section-id=”66c304d0ec8151339f8baf37″] is Carousel Section ID. Use this tool to find ID.

You can change number 7 to another number. Here 7 = 7 columns.

Summary Carousel With More Than Five Items 16 Min

Result:

Summary Carousel With More Than Five Items 17 Min

#6. To change arrow style, you can use this CSS code

/* Arrow Style */
.user-items-list-carousel__arrow-icon-background.user-items-list-carousel__arrow-icon-background-area {
    background-color: transparent !important;
}
button.user-items-list-carousel__arrow-button svg path {
    stroke: #000 !important;
}

Summary Carousel With More Than Five Items 18 Min

Summary Carousel With More Than Five Items 19 Min

To move it to Top Right position, use this CSS code

section[data-section-id="66c304d0ec8151339f8baf37"] .user-items-list-item-container {
    display: flex;
    flex-direction: column-reverse;
}

Summary Carousel With More Than Five Items 20 Min

Summary Carousel With More Than Five Items 21 Min