Jump to content

Topic Thumbnail for IPS4.x

Featured Replies

IPS 4.3.5 don't see topic thumbnails in Activity Streams

  • Replies 595
  • Views 49.8k
  • Created
  • Last Reply

Top Posters In This Topic

Most Popular Posts

Posted Images

  • Author
 

IPS 4.3.5 don't see topic thumbnails in Activity Streams

I confirm this problem, it will be fixed in the next version.

Did you enable "Show thumbs in streams & search results"?

Edited by onlyME

 

I confirm this problem, it will be fixed in the next version.

Did you enable "Show thumbs in streams & search results"?

Yes, these are my settings:

 

Screenshot_20180902-072446_Chrome.jpg

  • Author
 

Yes, these are my settings:

 

Screenshot_20180902-072446_Chrome.jpg

I can not reproduce the issue, it works fine for me. Try to test it on default theme or give me acp access so I can take a look.

WRfForMbQaSjcyr3M6mCDQ.png

  • 2 weeks later...

Don't know what's going on but I updated to latest and the application still shows there is an update available. I tried clearing the site cache but it still shows this:

 

Update.thumb.jpg.9d2685beb9786ed4fcb9b85fc6ea8bcc.jpg

  • Author

@Christforums Try to re run "updatecheck" task. 🙂

Hi there,

I'm sure I asked this before, butu haven't used my Invision forum for ages...

Standard IPB theme will grey out the forum icon if all the posts are read. Is there a way to do this with topic thumbnails?

So, icon is normal if new posts, but greyed out if all posts are read?

  • Author
 

Hi there,

I'm sure I asked this before, butu haven't used my Invision forum for ages...

Standard IPB theme will grey out the forum icon if all the posts are read. Is there a way to do this with topic thumbnails?

So, icon is normal if new posts, but greyed out if all posts are read?

The thumbnails are not grey. In the past, I got some complains about this feature so I removed it. I will consider it again.

 

The thumbnails are not grey. In the past, I got some complains about this feature so I removed it. I will consider it again.

Thanks, strange why you got complaints. The whole point of icons next to topics is to know which topics have new posts. The default theme has a dark grey speech bubble for new posts, light grey for no new posts. It's common sense. 😉

Afraid I can't use it without a read/unread difference, my members complain. Could it be switchable?

  • Author

@Lenny Warren Try to edit your theme > core > global > plugins > bim_tthumb_showThumb

Find

<div class="bim_tthumb_wrap">

Replace by

<div class="bim_tthumb_wrap {{if $topic->unread()}}tthumb_unread{{endif}}">

And then add this code to custom.css

.bim_tthumb_wrap {
	opacity: 0.5;
}
.tthumb_unread {
	opacity: 1 !important;
}

 

Edited by onlyME

 

@Lenny Warren Try to edit your theme > core > global > plugins > bim_tthumb_showThumb

FANTASTIC, that works beautifully. Many thanks, you're the best... 😄

Ah, spoke too soon. It doesn't work...

my custom.css is as follows. It makes the unread faint, but read fainter still.

When I copied an dpasted, I got a few red dots? I edited them out, but >?????


 

  Quote

 

#ipsLayout_contentWrapper {
  background-color: {theme="area_background_reset"};
}

body {
    background: url({resource="background.jpg" app="core" location="admin"}) repeat center top fixed #000;  
}

.nbPinned {
    background: #00595c;
    color: #fff;
    /* font-weight: bold; */
    margin-top: 5px;
}

#ipsLayout_contentWrapper {
    padding: 20px;
}

body {
  max-width: 1340px;
  margin: 0 auto;
}

#ipsLayout_body {
  padding: 0;
}

.bim_tthumb_wrap {
    opacity: 0.5;
}
.tthumb_unread {
    opacity: 1 !important;
}

 

 

Screen Shot 2018-09-20 at 21.50.21.png

Screen Shot 2018-09-20 at 21.49.21.png

I already had this, but deleted it...

  Quote

 

.tthumbimg, .tthumbPreview {
    opacity: 0.2 !important;
}

.ipsDataItem_unread .tthumbimg, .ipsDataItem_unread .tthumbPreview {
    opacity: 1 !important;
}

 

 

Plus, it won't let me mark forum as read...

Screen Shot 2018-09-20 at 21.53.26.png

  • Author

@Lenny Warren try to type the code manually.

 

Plus, it won't let me mark forum as read...

I confirm this bug, it will be fixed in the next version.

 

@Lenny Warren try to type the code manually.

Tried that, still the same. It fades out the topics with read posts but the unread topic isn't the original image, it's a faded version. Hence there is hardly a difference so hard to differentiate.. 😞

Screen Shot 2018-09-22 at 14.17.09.png

Is this right? There were two instances of

<div class="bim_tthumb_wrap">


 

  Quote

 

{{$w = !$isForumIcon ? settings.bim_tthumb_width : settings.bim_tthumb_forumIcon_width;}}
{{$h = !$isForumIcon ? settings.bim_tthumb_height : settings.bim_tthumb_forumIcon_height;}}

{{if $topic->tid > 0}}
    {{if !$isForumIcon}}
        {{if $topic->container()->canSeeThumb()}}
            <div class="bim_tthumb_wrap {{if $topic->unread()}}tthumb_unread{{endif}}">
                {{if $topic->container()->canChangeThumb($topic->starter_id)}}
                    <a href='#' alt='{$topic->title}' data-ipsDialog data-ipsDialog-url="{$topic->url('changeTopicThumbnail')}" data-ipsDialog-size="tthumb" data-ipsDialog-title='{lang="bim_tthumb_changeThumb"}' data-ipsDialog-forceReload='true' {{if settings.bim_tthumb_onhover == 1}}data-ipstpopup data-ipstpopup-width='280' data-ipstpopup-target="{$topic->url('tthumbGetImage')}"{{endif}}>
                {{else}}
                    <a href='{$topic->url()}' alt='{$topic->title}' {{if settings.bim_tthumb_onhover == 1}}data-ipstpopup data-ipstpopup-width='280' data-ipstpopup-target="{$topic->url('tthumbGetImage')}"{{endif}}>
                {{endif}}
                    <div id='tthumb_{$topic->tid}' class="tthumb_standard" style="background-image:url('{$topic->tthumb_show()}'); width: {$w}px; height: {$h}px;"></div>                
                </a>
            </div>
        {{endif}}
    {{else}}
        <div class="bim_tthumb_wrap {{if $topic->unread()}}tthumb_unread{{endif}}">
            <a {{if $topic->container()->canChangeThumb($topic->starter_id) || member.member_id}}href='#tthumb{$topic->tid}_menu' data-ipsMenu id='tthumb{$topic->tid}'{{else}}href='{$topic->url()}'{{endif}} {{if settings.bim_tthumb_onhover == 1}}data-ipstpopup data-ipstpopup-width='280' data-ipstpopup-target="{$topic->url('tthumbGetImage')}"{{endif}} alt='{$topic->title}'>
                <div {{if $topic->upload_thumbnail}}data-full="{file="$topic->upload_thumbnail" extension="forums_topicThumbnail"}"{{endif}} id="tthumb_{$topic->tid}" class='tthumb_standard' style="background-image:url('{$topic->tthumb_show()}'); width: {$w}px; height: {$h}px;"></div>
            </a>
            {{if $topic->container()->canChangeThumb($topic->starter_id) || member.member_id}}
                <ul id='tthumb{$topic->tid}_menu' class='ipsMenu ipsMenu_auto ipsHide'>
                    {{if $topic->container()->canChangeThumb($topic->starter_id)}}
                        <li class='ipsMenu_item'>
                            <a href='#' data-ipsDialog data-ipsDialog-url="{$topic->url('changeTopicThumbnail')}" data-ipsDialog-size="tthumb" data-ipsDialog-title='{lang="bim_tthumb_changeThumb"}' data-ipsDialog-forceReload='true'>
                                {lang="bim_tthumb_changeThumb"}
                            </a>
                        </li>
                    {{endif}}
                    <li class='ipsMenu_item'>
                        <a href="{$topic->container()->url()->setQueryString( 'do', 'markRead' )->csrf()}" data-action='tthumb_markAsRead' data-forumid="{$forum->id}">
                            {lang="mark_forum_read"}
                        </a>
                    </li>        
                </ul>    
            {{endif}}
        </div>        
    {{endif}}
{{endif}}

 

 

  • Author

@Lenny Warren please wait for the next version. I will add a new option for this feature 🙂

 

@Lenny Warren please wait for the next version. I will add a new option for this feature 🙂

Many thanks, appreciated...

  • 3 weeks later...
 

@Lenny Warren please wait for the next version. I will add a new option for this feature 🙂

Many thanks for the update @onlyME installed the new version, but it still gives the same issues as before, all the thumbs are greyed out... 😞

  • Author
 

Many thanks for the update @onlyME installed the new version, but it still gives the same issues as before, all the thumbs are greyed out... 😞

Please give me acp access so I can take a look.

 

Please give me acp access so I can take a look.

Many thanks, sent you a message....

 

Many thanks for the update @onlyME installed the new version, but it still gives the same issues as before, all the thumbs are greyed out... 😞

Many thanks @onlyME, all working now. FANTASTIC SUPPORT AS USUAL. 🙂

  • 1 month later...

Whoops never mind.

Edited by Serayah

  • 2 weeks later...

Hi. How to fix grid view in ips focus theme?

 

gridview.png

  • Author
 

Hi. How to fix grid view in ips focus theme?

 

gridview.png

I see it works fine on your site. Try to clear your browser cache.

 

works fine on your site

Because im chnge to mansory, gridview is better but not work on this theme. After update thumb not work.

 

thu.png

Recently Browsing 0

  • No registered users viewing this page.