Keyword

[SOLVED] extrafields

  • elena ecaterina casartelli
  • elena ecaterina casartelli's Avatar Topic Author
  • Offline
  • New Member
More
8 years 11 months ago #148587 by elena ecaterina casartelli
extrafields was created by elena ecaterina casartelli
Another small problem
I have some extrafields, I put in my template like this

<div class="autoreLibro">

<p>Autore: <span style="font-weight:bold"><?php echo $this->item->extraFields->autore->value ;?></span> </p>
</div>


now if an extrafield isn't filled I get this error instead an empty space

Notice: Undefined property: stdClass::$autore in /web/htdocs/www.trichi.it/home/templates/yoo_vida/html/com_k2/libri/item.php on line 311
Notice: Trying to get property of non-object in /web/htdocs/www.trichi.it/home/templates/yoo_vida/html/com_k2/libri/item.php on line 311

Please Log in or Create an account to join the conversation.

  • Mohamed Abdelaziz
  • Mohamed Abdelaziz's Avatar
  • Offline
  • Platinum Member
  • Joomla Developer
More
8 years 11 months ago #148592 by Mohamed Abdelaziz
Replied by Mohamed Abdelaziz on topic extrafields
Try to check for the value existence before displaying it, like this:
<?php if(isset($this->item->extraFields->autore) && !empty($this->item->extraFields->autore->value )) : ?>
<div class="autoreLibro">

<p>Autore: <span style="font-weight:bold"><?php echo $this->item->extraFields->autore->value ;?></span> </p>
</div>
<?php endif; ?>

Multiple Extra Fields Groups for K2
AutoMeta for K2
Chained Fields for K2
More K2 Extensions In My Extensions Store

Please Log in or Create an account to join the conversation.

  • elena ecaterina casartelli
  • elena ecaterina casartelli's Avatar Topic Author
  • Offline
  • New Member
More
8 years 11 months ago #148626 by elena ecaterina casartelli
Replied by elena ecaterina casartelli on topic extrafields
PERFECT!!! IT WORKS, THANK YOU
ELENA

Please Log in or Create an account to join the conversation.


Powered by Kunena Forum