Jump to content

How I can delete something on grid view for topics feed widget ?


Recommended Posts

Posted

I shall leave that to someone much better at CSS than I to correct. However Just looking myseld, I would have thoght it would be the class ipsData__last-text

Posted

Thanks.

No this is for the last poster. Not the author.

.ipsData__meta {
	display:none !important;
}

This is working. But I don't know if it's hidding other things somewhere else.

Posted

This may look a little confusing at first, but this is an alternative way to hide it (and how the default CSS handles it).

.ipsData--grid.ipsData--topic-feed-widget{
    --i-data--show-last-author: initial;
    --i-data--show-last-reply: ;
}

In the future, it'll be more readable. Something like this (but this code won't work just yet):

.ipsData--grid.ipsData--topic-feed-widget{
    --hide-meta: true;
}

 

Posted
10 hours ago, Ehren said:

This may look a little confusing at first, but this is an alternative way to hide it (and how the default CSS handles it).

.ipsData--grid.ipsData--topic-feed-widget{
    --i-data--show-last-author: initial;
    --i-data--show-last-reply: ;
}

 

Thanks. Sorry but it doesn't work as I wish. 

This code is hidding last author post and is showing author. 

And if I try this

.ipsData--grid.ipsData--topic-feed-widget{
    --i-data--show-last-author: ;
    --i-data--show-last-reply: initial;
}

it's showing both.

I want to hide author post and keep last poster

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...