1

I am seeing invalid template file error

Invalid template file: 'Sam_Options::after_nav_banner.phtml' in module: '' block's name: 'header.right.custom.area'

I have tried doing view in small letters and View in camel case letters but nothing works , I have tried template and templates both but no success .

.phtml file is in Sam/Options/view/frontend/templates/after_nav_banner.phtml

I have cleared cache delete cache folders tried everything.
What can be the issue?

Block code is this:

<block class="Magento\Framework\View\Element\Template" name="header.right.custom.area" template="Sam_Options::after_nav_banner.phtml" after="navigation.sections">

template file C:\xampp\htdocs\learnm2\app\code\Sam\Options\view\frontend\templates\after_nav_banner.phtml xml file C:\xampp\htdocs\learnm2\app\code\Sam\Options\view\frontend\layout\default.xml

Flutterer
  • 728
  • 5
  • 19

2 Answers2

0

Try this :

<block class="Sam\Options\Block\YourBlockNameHere" name="header.right.custom.area" template="Sam_Options::after_nav_banner.phtml" after="navigation.sections">
PЯINCƎ
  • 11,669
  • 3
  • 25
  • 80
  • still the same issue ... – Flutterer Feb 20 '19 at 19:50
  • Do some echo <?php echo "Hello"; ?> in after_nav_banner.phtml then add this : <?php echo $this->getLayout()->createBlock("Sam\Options\Block\Check")->setTemplate("Sam_Options::after_nav_banner.phtml")->toHtml();?> in another phtml and tell me if you that echo – PЯINCƎ Feb 21 '19 at 08:43
  • I have tried echo thing but didnt work ... i have added simple h1 tag with text but not working ... i have switched to ubuntu lets see maybe things will work smooth now but thanks for the answers :) – Flutterer Feb 22 '19 at 19:30
0

Put your template file inside this path:

C:\xampp\htdocs\learnm2\app\code\Sam\Options\view\frontend\templates\banner\after_nav_banner.phtml

Call it in your block like this:

<block class="Magento\Framework\View\Element\Template" name="header.right.custom.area" template="Sam_Options::banner/after_nav_banner.phtml" after="navigation.sections">

fmsthird
  • 4,592
  • 4
  • 17
  • 41