Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
September 10, 20168 yr Hi @newbie LAC is it possible to access the topic cover image thumb? If so, What's the variable? Imagine i want to make a custom block for tetrieving latest topics, with the cover thumbnail. What would be the correct syntax like this: "$topic->image_thumb" Another question: will you update it for the IPS 4.2? Thanks
September 10, 20168 yr Author On 9/10/2016 at 7:59 AM, xtech said: Hi @newbie LAC is it possible to access the topic cover image thumb? If so, What's the variable? Imagine i want to make a custom block for tetrieving latest topics, with the cover thumbnail. What would be the correct syntax like this: "$topic->image_thumb" Hello, Inbuilt covers hasn't thumbs. Only full images. On 9/10/2016 at 7:59 AM, xtech said: Another question: will you update it for the IPS 4.2? Yes.
September 10, 20168 yr Thank you for your prompt answer. I am looking to buy this, but having a "light version" of the topic image would be great for those purposes. Anyway, is it possible to access at least the image in a block plugin? How could one do it?
September 10, 20168 yr Author On 9/10/2016 at 8:11 AM, xtech said: Anyway, is it possible to access at least the image in a block plugin? How could one do it? {{if $topic->mapped('cover_photo')}} <img src='{file="$topic->mapped('cover_photo')" extension="nbtopiccover_TopicCover"}'> {{endif}} $topic should be an object of \IPS\forums\Topic
September 10, 20168 yr On 9/10/2016 at 8:11 AM, xtech said: Thank you for your prompt answer. I am looking to buy this, but having a "light version" of the topic image would be great for those purposes. Anyway, is it possible to access at least the image in a block plugin? How could one do it? Not to hijack this topic but you want Topic Thumbnail by @onlyME
September 10, 20168 yr I'm looking into buying this plugin. (Thanks for developing it!). Some questions / feature requests: Disable on mobile view Set height Allow per-topic setting to "collapse" topic cover by each user / allow per-user setting in Account Settings to "collapse" all topic covers Default topic cover per category
September 10, 20168 yr @newbie LAC Could the same idea for this app be developed as a header image per forum?
September 10, 20168 yr On 9/10/2016 at 1:00 PM, InsideEdge said: Could the same idea for this app be developed as a header image per forum? Agree - and I would suggest an option to add a link - so when you click the image you go to external page.
September 10, 20168 yr @newbie LAC nice extension, couple of questions. Do you have a link to a demo site running the plugin? When no topic cover is uploaded what does the header of the page look like?
September 10, 20168 yr demo would be nice On 9/10/2016 at 12:01 PM, Joel R said: I'm looking into buying this plugin. (Thanks for developing it!). Some questions / feature requests: Disable on mobile view Set height Allow per-topic setting to "collapse" topic cover by each user / allow per-user setting in Account Settings to "collapse" all topic covers Default topic cover per category vouch, would buy if this is added
September 11, 20168 yr Author Hello, On 9/10/2016 at 12:01 PM, Joel R said: Disable on mobile view Set height Allow per-topic setting to "collapse" topic cover by each user / allow per-user setting in Account Settings to "collapse" all topic covers Default topic cover per category 1. It's by default. The block has css class ipsResponsive_hidePhone 2. I thought to add a setting. But added css rule 200px. You can edit app css file or add your properties in custom.css. 3. I think about it. 4. I thought about it. Add setting to set global image or per forum. On 9/10/2016 at 1:00 PM, InsideEdge said: @newbie LAC Could the same idea for this app be developed as a header image per forum? Maybe. On 9/10/2016 at 1:24 PM, Kjell Iver Johansen said: Agree - and I would suggest an option to add a link - so when you click the image you go to external page. Inbuilt cover photos hasn't option to set link. On 9/10/2016 at 4:17 PM, N4H said: Do you have a link to a demo site running the plugin? When no topic cover is uploaded what does the header of the page look like? 1. No. Ask @gerard001 https://invisionpower.com/forums/topic/432286-thread-cover/ 2. Nothing if the user hasn't permissions to manage cover. Black block if the user has permissions to manage cover. On 9/10/2016 at 6:53 PM, sonimik1 said: supports gif? Yes.
September 14, 20168 yr On 9/11/2016 at 9:22 AM, Safety1st said: It's nice idea but to expensive(( Agree. $14.50 is quiet expensive, it barely has any customization features.
September 19, 20168 yr Excellent plugin! I'd like to add topic title over cover page. How do I do that? I tried {$topic->title} but didn't work...
September 20, 20168 yr Author Hello, On 9/19/2016 at 4:10 PM, BABOO2016 said: I tried {$topic->title} but didn't work.. It's correct code. On 9/19/2016 at 4:10 PM, BABOO2016 said: How do I do that? Open template nbTopicCover. Find {{if $coverPhoto->file or $coverPhoto->editable}} Add after {{$coverPhoto->overlay = $topic->title;}} You can use html Example {{$coverPhoto->overlay = "<div class='ipsType_veryLarge'>{$topic->title}</div>";}} Result
September 20, 20168 yr I've just noticed the title appears even when there is no topic cover. How do I fix that to show title only when cover photo exists? BTW this feature would be nice for Topic Cover 1.01
September 21, 20168 yr Author On 9/20/2016 at 3:26 PM, BABOO2016 said: I've just noticed the title appears even when there is no topic cover. How do I fix that to show title only when cover photo exists? {{if $coverPhoto->file}} {{$coverPhoto->overlay = "<div class='ipsType_veryLarge'>{$topic->title}</div>";}} {{endif}}
October 20, 20168 yr Greetings. It's been working perfect so far, but today I realized that the upper right overlaid option has disappeared from the main topic view. I can add a picture when I edit the first post, but I can't reposition or remove it from the main topic view. 2 days ago I installed a custom modification that, in theory, is not related. Plus the modification does not work with the forums where Topic Cover is installed. Any thoughts of what could have happened here?
October 20, 20168 yr Author On 10/20/2016 at 4:41 AM, gabs007 said: Greetings. It's been working perfect so far, but today I realized that the upper right overlaid option has disappeared from the main topic view. I can add a picture when I edit the first post, but I can't reposition or remove it from the main topic view. 2 days ago I installed a custom modification that, in theory, is not related. Plus the modification does not work with the forums where Topic Cover is installed. Any thoughts of what could have happened here? Hello, If you give me acp (and fpt for debugging) access I'll look into that.