Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
onlyME Posted May 7, 2016 Author Posted May 7, 2016 15 minutes ago, GoGators said: I am still having this issue. Your help would be appreciated. Sorry, I forgot this. GoGators 1
Joel R Posted May 7, 2016 Posted May 7, 2016 7 hours ago, onlyME said: Status updates? There is no topic thumbnail. On profile page, Activity
onlyME Posted May 8, 2016 Author Posted May 8, 2016 6 hours ago, Joel R said: On profile page, Activity It uses the same template with search results & activity streams so it has thumbnails. Joel R 1
onlyME Posted May 8, 2016 Author Posted May 8, 2016 Hi all, I released 1.1.10 Fixes permission bug in search results & activity streams. New option to enable/disable showing thumbnails in search results & activity streams. Joel R 1
GoGators Posted May 13, 2016 Posted May 13, 2016 After the last patch, the thumbnails are available in all forums, even though I only enabled it in one forum.
onlyME Posted May 13, 2016 Author Posted May 13, 2016 Just now, GoGators said: After the last patch, the thumbnails are available in all forums, even though I only enabled it in one forum. In search results or in forums?
GoGators Posted May 13, 2016 Posted May 13, 2016 Just now, onlyME said: In search results or in forums? The forums
onlyME Posted May 13, 2016 Author Posted May 13, 2016 Please give me ACP access so I can take a look.
Joel R Posted May 14, 2016 Posted May 14, 2016 Thanks for the release for v1.1.11 and the ongoing support. onlyME 1
GoGators Posted May 18, 2016 Posted May 18, 2016 Hello OnlyME, When I close a topic, and uncheck "Closed" in the Thumbnail Widget, it still displays the thumbnail.
onlyME Posted May 18, 2016 Author Posted May 18, 2016 2 hours ago, GoGators said: Hello OnlyME, When I close a topic, and uncheck "Closed" in the Thumbnail Widget, it still displays the thumbnail. Hi, I confim this bug, it will be fixed in the next version. GoGators 1
GoGators Posted May 19, 2016 Posted May 19, 2016 On 5/17/2016 at 10:29 PM, onlyME said: Hi, I confim this bug, it will be fixed in the next version. Thanks you.
Expeditiary Posted May 23, 2016 Posted May 23, 2016 (edited) Got a wild one for you. Custom theme, but the main change is just a fixed position header. Plugin works fine on default of course. On this theme, any thumbnails, whether from the first post or uploaded separately as a topic thumbnail, if the image is mostly square in ratio ie 300x300, 700x700, etc. the hover function only works on the very left edge of the thumbnail. Anywhere else and the it breaks, repeatedly trying to insert the <p> element. If the images are not square *or* they are the default thumbnail (square or otherwise) they work fine. Took a quick look at the hover js and didn't see anything that jumped out at me. Any guesses? EDIT: Found the problem. .ipsLayout_container { max-width: 100%; padding: 0 6%; } If a left/right padding is applied to ipsLayout_container and it is not a fixed number of pixels but instead a percentage the y function in your js breaks. Found it when I collapsed the browser to tablet view and everything worked fine. Any way you can account for padding width percentages in your js? Edited May 23, 2016 by Expeditiary
onlyME Posted May 23, 2016 Author Posted May 23, 2016 4 minutes ago, Expeditiary said: Got a wild one for you. Custom theme, but the main change is just a fixed position header. Plugin works fine on default of course. On this theme, any thumbnails, whether from the first post or uploaded separately as a topic thumbnail, if the image is mostly square in ratio ie 300x300, 700x700, etc. the hover function only works on the very left edge of the thumbnail. Anywhere else and the it breaks, repeatedly trying to insert the <p> element. If the images are not square *or* they are the default thumbnail (square or otherwise) they work fine. Took a quick look at the hover js and didn't see anything that jumped out at me. Any guesses? I don't understand the problems you got. Can you give me the screenshots?
Expeditiary Posted May 23, 2016 Posted May 23, 2016 .ipsLayout_container { max-width: 1340px; padding: 0 15px; margin: 0 auto; position: relative; } That's the default theme css. Works. Now change that to this, still on the default theme: .ipsLayout_container { max-width: 1340px; padding: 0 75px; margin: 0 auto; position: relative; } Hover now breaks. It starts to break at about 50px; You can reproduce this on your demo site, just use a browser inspector to change the padding on ipsLayout_content Since my theme uses percentages it was easily greater than 50px most of the time.
onlyME Posted May 23, 2016 Author Posted May 23, 2016 @Expeditiary Ok I confirm this issue, I will fix it in the next version.
Expeditiary Posted May 23, 2016 Posted May 23, 2016 I can work around this easily enough by swapping out the padding for custom margin-left margin-right calls so no big deal for me now that I know how to fix it but very cool you are fixing it as others might have the same problem. Great fast support response! onlyME 1
WhyCry Posted May 25, 2016 Posted May 25, 2016 Hello guys. I want to ask you for advice. I have two sites, one is based on Wordpress and the other is IPBoard 4 equipped with thumbnail awesome plugin. I wish to display latest topics from ipboard directly on wordpress site the same way this plugin's widget works (row with thumbnails). However I'm not sure what would be the best and fastest way to access this data from ipboard. I have two options, mysql query (but I can't find any example how to make external connection and access this data), or php parser (easiest way, but also the slowest). Any advice would be very appreciated. Love this plugin so far
onlyME Posted May 25, 2016 Author Posted May 25, 2016 2 minutes ago, WhyCry said: Hello guys. I want to ask you for advice. I have two sites, one is based on Wordpress and the other is IPBoard 4 equipped with thumbnail awesome plugin. I wish to display latest topics from ipboard directly on wordpress site the same way this plugin's widget works (row with thumbnails). However I'm not sure what would be the best and fastest way to access this data from ipboard. I have two options, mysql query (but I can't find any example how to make external connection and access this data), or php parser (easiest way, but also the slowest). Any advice would be very appreciated. Love this plugin so far Hi, It was built as a plugin of IPS, so it doesn't work with wordpress.
WhyCry Posted May 25, 2016 Posted May 25, 2016 1 hour ago, onlyME said: Hi, It was built as a plugin of IPS, so it doesn't work with wordpress. I hope you read my question, because that's quite obvious that this plugin does not work for wordpress.. What I want to achieve is to access IPB data through mysql and display thumbnails on wordpress site.
onlyME Posted May 25, 2016 Author Posted May 25, 2016 1 minute ago, WhyCry said: I hope you read my question, because that's quite obvious that this plugin does not work for wordpress.. What I want to achieve is to access IPB data through mysql and display thumbnails on wordpress site. Hi, The thumbnails was saved in colums topic_thumbnail and upload_thumbnail in table forums_topics. You can use sql query to get the data. WhyCry 1
Namo Posted June 2, 2016 Posted June 2, 2016 (edited) Hi, how to change from this <option value="tthumbnail" selected="">----------------</option> to this <option value="tthumbnail" selected="">Atomatic</option> ? In the options translations do not have this variable. Edited June 2, 2016 by Namo
onlyME Posted June 2, 2016 Author Posted June 2, 2016 @Namo try to open\plugins\bim41topicthumbnail\hooks\Topic.php Find $options['tthumbnail'] = '----------------'; Namo 1
Recommended Posts