Forum Discussion
Vanessa Martin
May 21, 2017Brass Contributor
Increasing the number of promoted links tiles displayed
Using a Script Editor web part, is there any code that will let me display more than 30 tiles? I found code to let me wrap the tiles, but only 30 of my 49 promoted links display on the page. Tha...
- May 22, 2017This could be related to the view limit. Have you altered this view to show more than 30 items? I have a promoted links view that shows 62 tiles with no issues. I use this for an A to Z list.
Nicholas Sperandeo
Sep 09, 2019Copper Contributor
The only way is to use SharePoint Designer -> List and Libraries -> pick the promoted links list -> under Views pick "Tiles" to edit the display template. Then in the <View Name = ..... change to ReadOnly="FALSE" (default is True) as in
Type="HTML" ReadOnly="FALSE" OrderedView="TRUE" DisplayName="Tiles"
and change the row limit from 30 to something greater, like 500
<RowLimit Paged="TRUE">500</RowLimit>
After those 2 things, edit your page and reselect the view in the web part