Commerce Categories Navigation Template and Friendly URL

thumbnail
4年前 に Jamie Sammons によって更新されました。 Junior Member 投稿: 39 参加年月日: 22/03/09 最新の投稿

Hello everyone,

I'm creating a Widget Template (Commerce Categories Navigation). 

I'm working with AssetCategory class (https://learn.liferay.com/reference/latest/en/dxp/javadocs/portal-kernel/com/liferay/asset/kernel/model/AssetCategory.html) and I'm wondering how can I get the friendly url.

Liferay Community Edition Portal 7.4.3.13 CE GA13

thumbnail
4年前 に Jamie Sammons によって更新されました。 Liferay Master 投稿: 593 参加年月日: 14/08/08 最新の投稿

Hi ,

You can try below code for fetching friendly url 

<#if entries?has_content>
	<#list entries as curAssetCategory>
				<#assign
				categoryHref = cpAssetCategoriesNavigationDisplayContext
				.getFriendlyURL(curAssetCategory.getCategoryId(), themeDisplay)
			/>
		${categoryHref}
	</#list>
</#if>

 

thumbnail
4年前 に Jamie Sammons によって更新されました。 Junior Member 投稿: 39 参加年月日: 22/03/09 最新の投稿

Thank you very much, I tried and it works!