Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<!-- Save favourites in Signifikant server database -->
<FavouriteProvider>
            <AssertFavouriteProvider/>
</FavouriteProvider>
<!-- Configure favourites function -->
<FavouriteManager>
	<FavouriteManager presentation-identifier-selector="Identity">
        <!-- Header image on favourites page -->
		<HeaderImage>Download_header.jpg</HeaderImage>
		<!-- Sharing favourite lists turned on or off, default is on. -->
		<ShareFavouritesEnabled>false</ShareFavouritesEnabled>
		<!-- If new lists will be shared by default or not. Default is shared (true). -->
		<ShareOwnFavouritesByDefault>false</ShareOwnFavouritesByDefault> 
		<FavouriteCartSettings>
			<Line>
                <Presentation template="order-cart"/>
				<Name tag="h4"/>
			</Line>
		</FavouriteCartSettings>
	</FavouriteManager>
</FavouriteManager>

Please note that the presentation is identified by the “Identity” in the configuration above. This means that presentations must have an identity to be visible in the Favourites list(s). You can also use “PersistentIdentity” as identifier.

Define where to show favourites in presentation settings.

...