문제

I am trying to add advanced search form as a block in Pages, but the following code is not working?

{{block class="Magento\Framework\View\Element\Template" template="Magento_CatalogSearch::advanced/form.phtml"}}

Thanks

도움이 되었습니까?

해결책

You need to change block class for Advance form.

It should be:

{{block class="Magento\CatalogSearch\Block\Advanced\Form" template="Magento_CatalogSearch::advanced/form.phtml"}}

on each phtml, block class is defined like:

enter image description here

If you need to customize phtml, copy it from:

vendor/magento/module-catalog-search/view/frontend/templates/advanced/form.phtml

to

app/design/frontend/{Package}/{theme}/Magento_CatalogSearch/templates/advanced/form.phtml

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