Вопрос

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