检查当前页面是否在ZenCart中被索引

发布于 2024-12-13 01:44:14 字数 146 浏览 2 评论 0原文

我在我的网站中使用 ZenCart,实际上我想自定义我的网站的外观。我已经对索引页执行了此操作,但没有对内页执行此操作,因为这些相同的页面正在用于内页。

例如,横幅图像位于索引页上,我不想在内页中看到它。检查页面是否是任何其他内部页面的索引页面的正确方法是什么。

I'm using a ZenCart in my website, actually I want to customise the look of my site. I've done this for the index pages but not for the inner pages, because those same pages are using for the inner pages.

For example the banner image is on the index page and I don't want to see it in the inner pages. What is the correct way to put a check in the pages that whether it is index page of any other inner page.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

在风中等你 2024-12-20 01:44:14

简单

检查下面的代码

if($_GET['main_page']=='index' and !isset($_GET['cPath']))
{
// your code
}

simple

check below code

if($_GET['main_page']=='index' and !isset($_GET['cPath']))
{
// your code
}
岁月静好 2024-12-20 01:44:14

使用 $current_page_base 变量 - 它由 Zen Cart 设置和维护。我不确定 $_GET['main_page'] 是否在 Zen Cart 代码中被覆盖,但不依赖它似乎更安全。

Use $current_page_base variable - it's set and maintained by Zen Cart. I'm not sure if $_GET['main_page'] is ever overridden in Zen Cart code but it seems safer to not rely on it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文