Zen Cart - 每个页面都有不同的横幅
我有一个带有定制模板的禅宗购物车商店,现在标题下有一个幻灯片画廊。我需要将此画廊保留在首页,但在所有其他页面上,相对于访问的页面,应该有不同的横幅而不是画廊。 例如,在“关于我们”页面上应该有banner_aboutus.ext,contact => banner_contact.ext 等。请帮我做这件事。 如果有人知道这个问题的解决方案,我将非常感激,你会从我的肩膀上举起一座大山...... 提前致谢
I have a zen cart shop with a costumized template and for now there is a slideshow gallery under the header. I need to keep this gallery for the first page, but on all the other pages there should be distinct banners instead of the gallery, relative to the visited page.
e.g. on the "about us" page there should be banner_aboutus.ext, contact => banner_contact.ext and so on. Please help me do this.
If anyone knows a solution for this, I would appreciate a lot, you would lift a mountain from my shoulders...
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我已经用 php 艰难地完成了它 - 我很幸运 zen cart 允许在模板中使用 php...
我使用了 3 个变量的条件:
$_GET['main_page']
、$_GET['cPath']
和$_GET['id']
> 并根据它们的值我插入了我需要的内容,如下所示:I've done it the hard way with php - I'm lucky that zen cart allows php in templates...
I used conditions with 3 vars:
$_GET['main_page']
,$_GET['cPath']
and$_GET['id']
and depending on their value I inserted the content I need as follows: