Zen Cart - 每个页面都有不同的横幅

发布于 2024-11-19 23:59:16 字数 214 浏览 1 评论 0原文

我有一个带有定制模板的禅宗购物车商店,现在标题下有一个幻灯片画廊。我需要将此画廊保留在首页,但在所有其他页面上,相对于访问的页面,应该有不同的横幅而不是画廊。 例如,在“关于我们”页面上应该有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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情话难免假 2024-11-26 23:59:17

我已经用 php 艰难地完成了它 - 我很幸运 zen cart 允许在模板中使用 php...
我使用了 3 个变量的条件:$_GET['main_page']$_GET['cPath']$_GET['id'] > 并根据它们的值我插入了我需要的内容,如下所示:

if($_GET['main_page']=='index' && !$_GET['cPath']){ // this condition is met only on the first page
// slideshow
}
elseif($_GET['main_page']=='page' && $_GET['id']==1){
// banner
} // and so on

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:

if($_GET['main_page']=='index' && !$_GET['cPath']){ // this condition is met only on the first page
// slideshow
}
elseif($_GET['main_page']=='page' && $_GET['id']==1){
// banner
} // and so on
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文