[OzzModz] Latest Content Live Updates

[OzzModz] Latest Content Live Updates 2.0.1 Patch Level 1

No permission to download

Ozzy47

Well-known member
Ozzy47 submitted a new resource:

[OzzModz] Latest Content Live Updates - Stop hitting refresh and get a live feed of your community.

Latest Content Live Updates
Stop hitting refresh with Latest Content Live Updates! Provide a live feed of your community’s activity and create a curated news feed for members, allowing each person to have a continuous stream of what’s happening either for those they subscribe to, or across the entire community!

Administrator Features

  • Choose how often in seconds each news feed polls for live updates
  • Keep polling even when the tab is not active
  • Remove reactions...

Read more about this resource...
 
just curious if anyone is noticing that this addon has randomly stops updating the feed in recent days? this has been happening this week. nothing changed on the forum except for maybe updating a few addons.
 
thanks for updating this addon with the fix for dup entries! based on network console in browser, this addon likely uses jquery. if so, do consider removing jquery requirement whenever possible so that it can be ready for use with 2.3 whenever it is released. thanks!
 
Does this also eliminate the need to click "Show older items" as you scroll? That would be really nice, for it to load the results as you scrolled like a modern feed. If not, can this be considered? Thanks!
 
It's possible to see it at the position "Forum overview: Bottom" please? i want to replace my "whats New" view
Yes, you can use the "Forum Overview: Bottom" position, this is basically the Latest Activity feed in a widget. Here's what it looks like unedited on my default theme

unedited.webp

And on my live site I've edited it to suit my needs

edited.webp

The unedited version will show things like attachments, images etc
 
Yes, you can use the "Forum Overview: Bottom" position, this is basically the Latest Activity feed in a widget. Here's what it looks like unedited on my default theme

View attachment 298248

And on my live site I've edited it to suit my needs

View attachment 298249

The unedited version will show things like attachments, images etc
Thank you very much. I just bought it.
It might be possible, but it's something I haven't even looked at at all.
Hey @Ozzy47, IS it possible to use a code like this for the addon?

Code:
.structItem--thread:nth-child(even) {background-color:#2a2a2c!important}
.structItem--thread:nth-child(odd) {background-color: #222222!important}
 
Hey @Ozzy47, IS it possible to use a code like this for the addon?
Untested but I think something like this should work

Code:
[data-widget-key="widget_key"] {
    .block-row.block-row--separated.ozzmodz-law-block {
        &:nth-child(even) {
            background-color: #2a2a2c !important;
        }
        &:nth-child(odd) {
            background-color: #222222 !important;
        }
    }
}

Changing widget_key to whatever you've used as your identifier
 
Last edited:
Untested but I think something like this should work

Code:
[data-widget-key="widget_key"] {
    .block-row.block-row--separated.ozzmodz-law-block {
        &:nth-child(even) {
            background-color: #2a2a2c !important;
        }
        &:nth-child(odd) {
            background-color: #222222 !important;
        }
    }
}

Changing widget_key to whatever you've used as your identifier
Thank you again. It's also possible with the whats-new/latest-activity page?

I have try:
Code:
[data-template="latest_activity"] {
    .block-row.block-row--separated.ozzmodz-law-block {
        &:nth-child(even) {
            background-color: #2a2a2c !important;
        }
        &:nth-child(odd) {
            background-color: #222222 !important;
        }
    }
}

But it d'ont work
 
Thank you again. It's also possible with the whats-new/latest-activity page?
I don't want to derail this support thread but yes, try this

Code:
[data-template="latest_activity"] {
    .block-row.block-row--separated {
        &:nth-child(even) {
            background-color: #2a2a2c !important;
        }
        &:nth-child(odd) {
            background-color: #222222 !important;
        }
    }
}
 
Top Bottom