I have extended Module_Contact to show an image at the end of the form. But it doesn't show. I put the image in app/design/frontend/vendor/customTheme/Module_Contact/web/images
and also tried in customTheme/web/images but nothing.
The reference is src="images/img.jpg"
Am I doing things right?
Solved! Go to Solution.
So Shouldn't use only html <img src="..." >?
I try with this, but it only shows me the URL
<?php echo $block->getViewFileUrl('images/map.jpg'); ?>
Hi @mauri_mono
You need to use like below example:
<img src="<?php echo $block->getViewFileUrl('images/map.jpg'); ?>" >
Hi @mauri_mono
Try the below stack solution.
https://magento.stackexchange.com/a/93697
I hope it will help you!
Hi @mauri_mono
You need to use like below example:
<img src="<?php echo $block->getViewFileUrl('images/map.jpg'); ?>" >