gpt4 book ai didi

php - Opencart - 仅更改产品页面的标​​题

转载 作者:行者123 更新时间:2023-12-04 15:20:47 28 4
gpt4 key购买 nike

我可以在产品 Controller product.php 中初始化一些变量,然后将它加载到 header Controller header.php 并在 View header.twig< 中使用它吗,根据这个变量加载某些信息?如果没有,如何判断商品页面是否打开?

最佳答案

在 header.php 中确定产品页面的最简单方法

if (isset($this->request->get['product_id'])) {
$product_id = (int)$this->request->get['product_id'];

} else {
$product_id = 0;
}

if ($product_id) {
//... some code for product page
}

您还可以在 header.php 中结合检查和产品 Controller 路由

if (isset($this->request->get['route']) && $this->request->get['route'] == 'product/product' && isset($this->request->get['product_id'])) {
// some code for product page
}

关于php - Opencart - 仅更改产品页面的标​​题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63360386/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com