Remove Image in Tag Pages

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Thu Jul 03, 2014 6:46 pm
Reply with quote
Report this post
Hello,

I want to remove image from tag pages like search result page. No K2 installed.

How can i remove images? Which part should i delete at /templates/gk_news2/html/com_tags/tags/default_items.php ?

Thanks
User avatar
Senior Boarder

teitbite
Fri Jul 04, 2014 11:44 am
Reply with quote
Report this post
Hi

Please show me a page with example.
User avatar
Moderator

GK User
Fri Jul 04, 2014 9:59 pm
Reply with quote
Report this post
http://www.avmindirim.com/tag/641-nine-west.html

Is there a joomla tag page style in News2 template? I mean without k2.

Is it possible to make it like that, similar to blog view.

http://demo.gavick.com/joomla25/news2/i ... /k2/k2-tag

Thanks.
User avatar
Senior Boarder

teitbite
Sat Jul 05, 2014 11:27 am
Reply with quote
Report this post
Hi

If You are looking for a better look for this page try add this code to override.css and make sure override is enabled in template settings.

Code: Select all
div.tag-category ul.category li {
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    display: inline-block;
    font-size: 90%;
    padding: 10px;
    width: 49%;
}


To just hide images in this view use this code:

Code: Select all
section span.tag-body img {
display: none;
}
User avatar
Moderator

GK User
Sat Jul 05, 2014 5:38 pm
Reply with quote
Report this post
Ok new look is better now thank you very much.

What about in mobile view?

Thanks
User avatar
Senior Boarder

teitbite
Sun Jul 06, 2014 8:34 am
Reply with quote
Report this post
Hi

Add this to mobile.css:

Code: Select all
div.tag-category ul.category li {
width: 100%;
}
User avatar
Moderator

GK User
Wed Jul 16, 2014 7:42 pm
Reply with quote
Report this post
Hello,

How can i make a tag page look like joomla category blog layout? I mean borders etc.

Regards
User avatar
Senior Boarder

teitbite
Fri Jul 18, 2014 1:19 pm
Reply with quote
Report this post
Hi

I'm afraid this will require some additional codding and we do not support that, sorry.
User avatar
Moderator

GK User
Fri Jul 18, 2014 11:28 pm
Reply with quote
Report this post
But you have tag layout in your demo for K2, why don't you have a support for joomla core tag layout?

When i paid €99 to your template, i thought there was a similar layout for joomla tag. But i couldn't find.

If you don't have a support to make it similar to your demo, you should insert a notice to your template demo that you don't have a layout for joomla core tag.

I have appreciated your support, but am i wrong about this issue?

Best Regards.

teitbite wrote:Hi

I'm afraid this will require some additional codding and we do not support that, sorry.
User avatar
Senior Boarder

teitbite
Sun Jul 20, 2014 12:03 pm
Reply with quote
Report this post
Hi

K2 and joomla article tags pages are using completly different html structure since are generated via a different components. This is why we have designed a different layout for joomla tag and k2 tag. If You want to use K2 layout please simply convert Your articles to K2 (it's a one click button in K2 page).
User avatar
Moderator

GK User
Sun Jul 20, 2014 5:23 pm
Reply with quote
Report this post
I know cons and pros of K2, thank you for your advice. At least can you tell me please, how can i align vertically to top articles on joomla tags page according to your layout for joomla tag?

This is the code i've overrided.

Code: Select all
div.tag-category ul.category li {
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    display: inline-block;
    font-size: 90%;
    padding: 10px;
    width: 49%;
}

teitbite wrote:Hi

K2 and joomla article tags pages are using completly different html structure since are generated via a different components. This is why we have designed a different layout for joomla tag and k2 tag. If You want to use K2 layout please simply convert Your articles to K2 (it's a one click button in K2 page).
User avatar
Senior Boarder

teitbite
Mon Jul 21, 2014 10:26 am
Reply with quote
Report this post
Hi

Of course. Please tell me the url to the page You have made this screenshot.
User avatar
Moderator

GK User
Tue Jul 22, 2014 12:43 pm
Reply with quote
Report this post
I sent you via message

teitbite wrote:Hi

Of course. Please tell me the url to the page You have made this screenshot.
User avatar
Senior Boarder

teitbite
Tue Jul 22, 2014 7:15 pm
Reply with quote
Report this post
Hi

Please add this to override.css and make sure override is enabled in template settings:

Code: Select all
div.tag-category ul.category li {
    display: block;
    float: left;
}
User avatar
Moderator

GK User
Wed Jul 23, 2014 1:26 am
Reply with quote
Report this post
Hi,

After adding this to override.css , most of the tag pages are broken, you can see in the attachment.

And also i am sending a link. You can see it with a developer tool.

teitbite wrote:Hi

Please add this to override.css and make sure override is enabled in template settings:

Code: Select all
div.tag-category ul.category li {
    display: block;
    float: left;
}
User avatar
Senior Boarder

teitbite
Wed Jul 23, 2014 9:41 am
Reply with quote
Report this post
Hi

Yes, I was expecting that. Add this code to make them even:

Code: Select all
div.tag-category ul.category li.cat-list-row0 {
    clear: both;
}
User avatar
Moderator

GK User
Wed Jul 23, 2014 10:27 am
Reply with quote
Report this post
Hi,

It works, thank you.
User avatar
Senior Boarder


cron