1

我有一个我试图隐藏标题 DIV 的 opencart 类别页面。在所有类别和子猫中,(目前)只有一个我试图隐藏。

我使用的以下代码不起作用:

<?php if ($categories && $heading_title!="HEADING TITLE HERE") { ?>

    <?php elseif : ?>

<div id="headerhide" style="width:800px;">
      <h1><?php echo $heading_title; ?></h1>
    </div>

    <?php } ?>

<?php endif ?>
4

3 回答 3

1
<?php if ($categories && $heading_title!="HEADING TITLE HERE") {  } else {  ?>
<div id="headerhide" style="width:800px;">
    <h1><?=$heading_title?></h1>
</div>
<?php } ?>

我在我的 OpenCartinformation.tpl页面上有这个设置:

<?
// If FAQs page or content show AJAX
// We check for case sensitive titles - the title is case sensitive
if($heading_title=="FAQs" || $heading_title=="Faqs") { ?>
<script type="text/javascript">
$(document).ready(function(){
    // ETC
});
</script>
<?
// Not the FAQs page so do nothing
}
?>
于 2012-10-14T01:13:16.423 回答
1
<?php if ($categories && $heading_title!="HEADING TITLE HERE") { ?>

    <?php }
          else {  
    ?>

<div id="headerhide" style="width:800px;">
      <h1><?php echo $heading_title; ?></h1>
    </div>

    <?php } ?>
于 2012-10-14T01:23:29.167 回答
0

我最近制作了一个商业 vQmod,对你有用。它称为自定义模板,允许您将其分配给任意数量的单独类别页面。它不仅适用于类别(制造商、产品和信息页面)。虽然一页可能有点矫枉过正,但如果您计划将来将其用于多页,我认为从长远来看会更好

于 2012-10-14T12:30:13.290 回答