Question

My name is Obeybe and I'm new in Sharepoint online.

I'm facing an issue with the "Highlighted content" web part. In a communication site I want to show the 5 latest pages added into "The page library on this site" in the corresponding language. I want to display the tiles in a carousel.

It was working fine previously, but since a few weeks the last added page has been displayed and the carousel is not moving.

I hope someone can help me with this issue.

<View><RowLimit>5</RowLimit>
<Query>
  <OrderBy>
    <FieldRef Name="FirstPublishedDate" Ascending="FALSE"></FieldRef>
  </OrderBy>
  <Where>
      <And>
        <Eq>
              <FieldRef Name="IsCarousel" />
              <Value Type="Boolean">1</Value>
        </Eq>
        <Eq>
              <FieldRef Name="Languages" />
              <Value Type="TaxonomyFieldType">English</Value>
        </Eq>
    </And>
  </Where>
</Query>
</View>

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with sharepoint.stackexchange
scroll top