Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
September 2, 20186 yr 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 September 2, 20186 yr by onlyME
September 2, 20186 yr 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:
September 2, 20186 yr Author Yes, these are my settings: 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.
September 15, 20186 yr 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:
September 19, 20186 yr 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?
September 20, 20186 yr 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.
September 20, 20186 yr 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?
September 20, 20186 yr 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 September 20, 20186 yr by onlyME
September 20, 20186 yr @Lenny Warren Try to edit your theme > core > global > plugins > bim_tthumb_showThumb FANTASTIC, that works beautifully. Many thanks, you're the best... 😄
September 20, 20186 yr 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; } 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...
September 21, 20186 yr 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.
September 22, 20186 yr @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.. 😞
September 22, 20186 yr 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}}
September 22, 20186 yr Author @Lenny Warren please wait for the next version. I will add a new option for this feature 🙂
September 22, 20186 yr @Lenny Warren please wait for the next version. I will add a new option for this feature 🙂 Many thanks, appreciated...
October 8, 20186 yr @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... 😞
October 8, 20186 yr 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.
October 8, 20186 yr Please give me acp access so I can take a look. Many thanks, sent you a message....
October 8, 20186 yr 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. 🙂
November 21, 20186 yr Author Hi. How to fix grid view in ips focus theme? I see it works fine on your site. Try to clear your browser cache.
November 21, 20186 yr works fine on your site Because im chnge to mansory, gridview is better but not work on this theme. After update thumb not work.