문제

I am WordPress developer past 3 years. Now I'm started PrestaShop first project. It's possible if conditions for cms pages?

For example:

If (cms page1) {
......
}
elseif (cms page2) {
...
}
else {
.....
}
도움이 되었습니까?

해결책

In the template cms.tpl you can use the following syntax:

{if $cms->link_rewrite eq 'about-us'}
...
{else if $cms->link_rewrite eq 'bbb'}
...
{else}
...
{/if}

You can use as well directly the id: $cms->id

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top