- Posts: 404
COMMUNITY FORUM
Display Author with link in Tag View?
- Odin Mayland
- Topic Author
- Offline
- Platinum Member
Less
More
4 years 6 months ago #175808
by Odin Mayland
Display Author with link in Tag View? was created by Odin Mayland
How can I display the author with link in the tagview just like in the item view?
I tried adding the following but there was an error:
<?php if($this->item->params->get('itemAuthor')): ?>
<!-- Item Author -->
<span class="itemAuthor">
<?php echo K2HelperUtilities::writtenBy($this->item->author->profile->gender); ?>
<?php if(empty($this->item->created_by_alias)): ?>
<a rel="author" href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
<?php else: ?>
<?php echo $this->item->author->name; ?>
<?php endif; ?>
<br>
<?php endif; ?>
I tried adding the following but there was an error:
<?php if($this->item->params->get('itemAuthor')): ?>
<!-- Item Author -->
<span class="itemAuthor">
<?php echo K2HelperUtilities::writtenBy($this->item->author->profile->gender); ?>
<?php if(empty($this->item->created_by_alias)): ?>
<a rel="author" href="<?php echo $this->item->author->link; ?>"><?php echo $this->item->author->name; ?></a>
<?php else: ?>
<?php echo $this->item->author->name; ?>
<?php endif; ?>
<br>
<?php endif; ?>
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
4 years 6 months ago #175819
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Display Author with link in Tag View?
Replace what you have with this:
<!-- Item Author -->
<span class="itemAuthor">
<?php echo K2HelperUtilities::writtenBy($item->author->profile->gender); ?>
<?php if (empty($item->created_by_alias)): ?>
<a rel="author" href="<?php echo $item->author->link; ?>"><?php echo $item->author->name; ?></a>
<?php else: ?>
<?php echo $item->author->name; ?>
<?php endif; ?>
</span>
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
4 years 6 months ago #175820
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Display Author with link in Tag View?
Within the foreach loop, the item data are held in the $item object. "$this->item" is used in the item view (item.php) file.
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- Odin Mayland
- Topic Author
- Offline
- Platinum Member
Less
More
- Posts: 404
4 years 6 months ago #175842
by Odin Mayland
Replied by Odin Mayland on topic Display Author with link in Tag View?
AWESOME thanks!!!
Please Log in or Create an account to join the conversation.
- JoomlaWorks
- Offline
- Admin
Less
More
- Posts: 6218
4 years 6 months ago #175844
by JoomlaWorks
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by JoomlaWorks on topic Display Author with link in Tag View?
You're welcome.
Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.