Joel R Posted September 1, 2018 Posted September 1, 2018 IPS 4.3.5 don't see topic thumbnails in Activity Streams
onlyME Posted September 2, 2018 Author Posted September 2, 2018 (edited) 12 hours ago, Joel R said: 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, 2018 by onlyME
Joel R Posted September 2, 2018 Posted September 2, 2018 4 hours ago, onlyME said: 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:
onlyME Posted September 2, 2018 Author Posted September 2, 2018 1 hour ago, Joel R said: 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.
Sovereign Grace Singles Posted September 15, 2018 Posted September 15, 2018 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:
onlyME Posted September 16, 2018 Author Posted September 16, 2018 @Christforums Try to re run "updatecheck" task. 🙂
Lenny Warren Posted September 19, 2018 Posted September 19, 2018 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?
onlyME Posted September 20, 2018 Author Posted September 20, 2018 6 hours ago, Lenny Warren said: 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.
Lenny Warren Posted September 20, 2018 Posted September 20, 2018 9 hours ago, onlyME said: 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?
onlyME Posted September 20, 2018 Author Posted September 20, 2018 (edited) @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, 2018 by onlyME Lenny Warren 1
Lenny Warren Posted September 20, 2018 Posted September 20, 2018 4 hours ago, onlyME said: @Lenny Warren Try to edit your theme > core > global > plugins > bim_tthumb_showThumb FANTASTIC, that works beautifully. Many thanks, you're the best... 😄
Lenny Warren Posted September 20, 2018 Posted September 20, 2018 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...
onlyME Posted September 21, 2018 Author Posted September 21, 2018 @Lenny Warren try to type the code manually. 6 hours ago, Lenny Warren said: Plus, it won't let me mark forum as read... I confirm this bug, it will be fixed in the next version. Lenny Warren 1
Lenny Warren Posted September 22, 2018 Posted September 22, 2018 On 9/21/2018 at 4:14 AM, onlyME said: @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.. 😞
Lenny Warren Posted September 22, 2018 Posted September 22, 2018 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}}
onlyME Posted September 22, 2018 Author Posted September 22, 2018 @Lenny Warren please wait for the next version. I will add a new option for this feature 🙂 Lenny Warren 1
Lenny Warren Posted September 22, 2018 Posted September 22, 2018 Just now, onlyME said: @Lenny Warren please wait for the next version. I will add a new option for this feature 🙂 Many thanks, appreciated...
Lenny Warren Posted October 8, 2018 Posted October 8, 2018 On 9/22/2018 at 2:38 PM, onlyME said: @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... 😞
onlyME Posted October 8, 2018 Author Posted October 8, 2018 20 minutes ago, Lenny Warren said: 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. Lenny Warren 1
Lenny Warren Posted October 8, 2018 Posted October 8, 2018 10 minutes ago, onlyME said: Please give me acp access so I can take a look. Many thanks, sent you a message....
Lenny Warren Posted October 8, 2018 Posted October 8, 2018 1 hour ago, Lenny Warren said: 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. 🙂 onlyME 1
Metor Posted November 12, 2018 Posted November 12, 2018 (edited) Whoops never mind. Edited November 12, 2018 by Serayah onlyME 1
onlyME Posted November 21, 2018 Author Posted November 21, 2018 4 minutes ago, Namo said: Hi. How to fix grid view in ips focus theme? I see it works fine on your site. Try to clear your browser cache.
Namo Posted November 21, 2018 Posted November 21, 2018 1 minute ago, onlyME said: works fine on your site Because im chnge to mansory, gridview is better but not work on this theme. After update thumb not work.
Recommended Posts