gpt4 book ai didi

undefined variable (opencart)

转载 作者:行者123 更新时间:2023-12-02 07:36:27 25 4
gpt4 key购买 nike

在明显错误的那一行,代码如下所示:

<?php if ($filter_name) { ?>

我知道这可能是一个模糊的问题,但如果有人能提供帮助那就太好了!

最佳答案

这是一个非常模糊的问题。很可能你会在 header.tpl 中得到这个错误,因为你正在使用为 1.5.4.x(或更早版本)制作的主题和 1.5.5.x

in your catalog/view/theme/your_theme/template/common/header.tpl

寻找

<?php if ($filter_name) { ?>
<input type="text" name="filter_name" value="<?php echo $filter_name; ?>" />
<?php } else { ?>
<input type="text" name="filter_name" value="<?php echo $text_search; ?>" onclick="this.value = '';" onkeydown="this.style.color = '#000000';" />
<?php } ?>

替换为

<input type="text" name="search" placeholder="<?php echo $text_search; ?>" value="<?php echo $search; ?>" />

如果您在询问之前进行搜索,您会找到这个 http://forum.opencart.com/viewtopic.php?f=20&t=97790

关于 undefined variable (opencart),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15886093/

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