Keyword

How to change tag view options?

  • lusi djudjeto
  • lusi djudjeto's Avatar Topic Author
  • Offline
  • New Member
More
5 years 7 months ago #168628 by lusi djudjeto
How to change tag view options? was created by lusi djudjeto
Are there any options for " Item View options in TAG listing"??

I can change only categories settings but not tags settings.

When I click on a tag I'd like to have 2 leaging colums same as category view also item created date.But there are no options to change tags view.

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

More
5 years 7 months ago #168644 by Nadal Kumar
Replied by Nadal Kumar on topic How to change tag view options?
There is no core method to alter the tag items page. You need a plugin for that, and one exists.

It currently will only set the first item as lead, but it certainly can be updated to set any count for lead items. The parameter is set in the K2 global configuration which can set all tags to display with a lead, or leave the global at no and set the override in the menu item of type K2 tag. See it in action at directory.websitedons.net/k2-tag


Attachments:

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

More
5 years 7 months ago #168657 by Rivu Biswas
Replied by Rivu Biswas on topic How to change tag view options?
Thank you Nadal. Your procedure worked for me well.

Regards,
Zayn.

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

More
5 years 6 months ago #169202 by Villy Koutsogianni
Replied by Villy Koutsogianni on topic How to change tag view options?
Hi Nadal
Your plugin seems that resolves the problem of tag display without the need of hacking core files.
Thank you for creating and offering it!

I have followed the link you have provided then clicked on Get the pluging, but I couldn't spot it.

I found Custom Fields And Layout Formatting Shortcodes For Joomla 3 but the one for Tags

Can you please advise?

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

More
5 years 6 months ago #169209 by JoomlaWorks
Replied by JoomlaWorks on topic How to change tag view options?
I can confirm there is no direct URL to get the plugin.

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

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

More
5 years 5 months ago - 5 years 5 months ago #169404 by Villy Koutsogianni
Replied by Villy Koutsogianni on topic How to change tag view options?
It is a pity that for an obvious layout (tag view same as article view) one needs a 3rd party plg (that may not exist anymore) or else to hack the core K2 code.
Last edit: 5 years 5 months ago by Villy Koutsogianni.

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

More
5 years 5 months ago #169408 by JoomlaWorks
Replied by JoomlaWorks on topic How to change tag view options?
@Villy At some point in the coming updates, more layout options will be added to all secondary views (tag, user, date etc.).

In the meantime, it's dead simple to craft any grid you like by making simple modifications in the output loop of the file tag.php. If you need help, just ask.

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

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

More
5 years 5 months ago #169487 by Villy Koutsogianni
Replied by Villy Koutsogianni on topic How to change tag view options?
Hi Foti
Thank you for the reply.
I am sure I have posted here, asking for help but my post is not here anymore (:

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

More
5 years 5 months ago #169496 by JoomlaWorks
Replied by JoomlaWorks on topic How to change tag view options?
We haven't deleted any of your posts, that's for sure. Perhaps you had discussed the issue on another forum or Facebook page that's why you can't locate your post here. But in any case, if you need assistance, take a moment to describe your layout again.

Fotis / JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)

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

More
5 years 5 months ago #169561 by Villy Koutsogianni
Replied by Villy Koutsogianni on topic How to change tag view options?
Maybe I forgot to click Submit :(

So this is what I need to achieve.
The way I display my K2 items is as in the attached image

So, in the tag view I need to display 2 columns, rating, hits and tagged under.
I also would like to use intro world limit instead of read more, as I do in blog layout.

In order to add -also tagged under- I have followed Krikor’s advise in post #167620
In file models/item.php I have added || ($view == 'itemlist' && $task == 'tag') as following
// Tags
		if (($view == 'item' && ($item->params->get('itemTags') || ($view == 'itemlist' && $task == 'tag') || $item->params->get('itemRelated'))) || ($view == 'itemlist' && ($task == '' || $task == 'category') && $item->params->get('catItemTags')) || ($view == 'itemlist' && $task == 'user' && $item->params->get('userItemTags')) || ($view == 'latest' && $params->get('latestItemTags'))) 
		{
			$tags = $this->getItemTags($item->id);
			for ($i = 0; $i < sizeof($tags); $i++)
			{
				$tags[$i]->link = JRoute::_(K2HelperRoute::getTagRoute($tags[$i]->name));
			}
			$item->tags = $tags;
		}

Then in file templates/default/tag.php I have added a div
<div class="catItemTags"><span><?php echo JText::_('Also tagged under: '); ?></span>  
	<?php foreach ($this->item->tags as $tag): ?>
<a href="<?php echo $tag->link; ?>"><?php echo $tag->name; ?></a>, 
<?php endforeach; ?>
		 </div>

but with no result.

And what about 2 columns, rating, hits and world limit?

Thank you in advance
Attachments:

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


Powered by Kunena Forum