We are trying to translate the title of the slider to show in several languages correctly, but neither modifying the /app/code/Trive/Revo/view/frontend/templates/slider/items.phtml works.
I try to change the line 29
This
<strong id="block-<?php /* @escapeNotVerified */ echo $class?>-heading" role="heading" aria-level="2"><?php /* @escapeNotVerified */ $slider->getTitle() ?></strong>
To This
<strong id="block-<?php /* @escapeNotVerified */ echo $class?>-heading" role="heading" aria-level="2"><?php /* @escapeNotVerified */ echo __($slider->getTitle()) ?></strong>
Could you please give me some guidance on how I'm wrong?
Thanks
We are trying to translate the title of the slider to show in several languages correctly, but neither modifying the /app/code/Trive/Revo/view/frontend/templates/slider/items.phtml works.
I try to change the line 29
This
<strong id="block-<?php /* @escapeNotVerified */ echo $class?>-heading" role="heading" aria-level="2"><?php /* @escapeNotVerified */ $slider->getTitle() ?></strong>To This
<strong id="block-<?php /* @escapeNotVerified */ echo $class?>-heading" role="heading" aria-level="2"><?php /* @escapeNotVerified */ echo __($slider->getTitle()) ?></strong>Could you please give me some guidance on how I'm wrong?
Thanks