在 prestashop 中使用 iframe
我想在 prestashop 中使用 iframe 弹出窗口。如果我包含 header.php、footer.php,则页眉/页脚位于 iframe 中;我不想要。但如果我不包括它们,它就会错过一些有用的功能。那么我该如何解决这个问题呢?
I want use an iframe popup in prestashop. If i include header.php, footer.php the header/footer comes in the iframe; which i dont want. but if i dont include them, it misses some useful functionalities. so how can i solve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不需要重写 header.php 和 footer.php,您可以简单地使用
content_only
var,例如看看 cms.php。You don't need to rewrite header.php and footer.php, you can simply use
content_only
var, take a look at cms.php for example.这是prestashop的问题,逻辑代码和smarty代码在同一个文件中。
我想一种可能的解决方案是复制 header.php 和 footer.php 文件并注释 $smarty->display 行,然后包含 header_frame.php 文件。
这是一个相当大的黑客,但这是我目前看到的唯一解决方案。
This is the problem with prestashop, logic code and smarty code are in the same files.
I guess one possible solution would be to copy header.php and footer.php file and comment $smarty->display lines, and then include your header_frame.php file for example.
This is quite a hack but that's the only solution i see for the moment.