0
      <?php if($this->item->params->get('itemExtraFields') && count($this->item->extra_fields)): ?>
      <!-- Item extra fields -->
      <div class="itemExtraFields">
          <h3><?php echo JText::_('Additional Info'); ?></h3>
          <ul>
            <?php foreach ($this->item->extra_fields as $key=>$extraField):?>


 <?php $user =& JFactory::getUser(); ?>
 <strong><?php if($extraField->name == "Price" && $user->get('guest') ==1) { ?></strong> 


<?php else: ?>   
                <li class="<?php echo ($key%2) ? "odd" : "even"; ?> type<?php echo ucfirst($extraField->type); ?> group<?php echo $extraField->group; ?>">
                    <span class="itemExtraFieldsLabel"><?php echo $extraField->name; ?>:</span>
                    <span class="itemExtraFieldsValue"><?php echo ($extraField->type=='date')?JHTML::_('date', $extraField->value, JText::_('K2_DATE_FORMAT_LC')):$extraField->value; ?></span>
                </li>
                <?php endif; ?>
            <?php endforeach; ?>
            </ul>
        <div class="clr"></div>
      </div>
      <?php endif; ?>

这里似乎有什么问题?它返回Parse error: syntax error, unexpected T_ELSE in 的错误

这是为了 K2 Extrafield Visibility

4

3 回答 3

2

您正在混合if() :andif() {语法。if() {当其他所有东西都使用时,中间 有一个:

调试提示:错误通常在错误消息指向的行之前的一行中。

于 2011-09-15T13:04:36.053 回答
0

改变这个 -

<?php if($extraField->name == "Price" && $user->get('guest') ==1) { ?>

对此——

<?php if($extraField->name == "Price" && $user->get('guest') ==1): ?>
于 2011-09-15T14:03:09.817 回答
0

您正在混合使用 if-else 语句的不同方式。在该代码的中间,您使用 { 打开一个 if 语句,然后使用 else:。你也永远不会关闭那个 if。

于 2011-09-15T13:05:15.473 回答