Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
April 11, 20168 yr I just upgraded to 4.1.10 and this block is no longer filtering based in the forums I choose, no matter what I seem to choose - any suggestions? I checked to see if it was updated but I already have 1.04... Tried disabling and enabling, as well as re-adding blocks. Default IPB blocks are filtering based on forums without issue so I'm confused :-( Edited April 11, 20168 yr by Shawn Tierney
April 11, 20168 yr Author 1 minute ago, Shawn Tierney said: I just upgraded to 4.1.10 and this block is no longer filtering based in the forums I choose, no matter what I seem to choose - any suggestions? Tried disabling and enabling, as well as re-adding blocks. Default IPB blocks are filtering based on forums without issue so I'm confused :-( Hello, Show plugin settings
April 11, 20168 yr 3 minutes ago, newbie LAC said: Hello, Show plugin settings A picture of the block settings? I can post that later this morning (I've tried several different combinations) Edited April 11, 20168 yr by Shawn Tierney
April 11, 20168 yr Author Just now, Shawn Tierney said: A picture of the block settings? Yes. I've made quick test and couldn't reproduce the problem.
April 24, 20168 yr My apologies, the mistake was mine - also sorry for the delayed response - been working doubles
May 2, 20168 yr Hello, Currently it is not very clear when there are read vs unread new posts/replies (looks like it is bold vs not - but that is hard for me to see). What would I need to do to either highlight the container that the unread content is in, or show the "unread" icon next to the row (like it is in the forum). I have your 3.4.x version and it is like this for read (top 2) vs unread (bottom 1) Or if it could just show the theme unread icon like this: That would be helpful too. Any and all help that you can provide would be awesome. Thank you, almax
May 2, 20168 yr Author 2 minutes ago, almax said: That would be helpful too. Any and all help that you can provide would be awesome. Hello, I'll add "unread indicator" in next release.
May 2, 20168 yr Author 3 hours ago, almax said: That would be helpful too. Any and all help that you can provide would be awesome. Hello again. I checked and topic/post have indicator. It's css class ipsDataItem_unread See screenshot I added into custom.css .ipsWidget[data-blockid*="_nbRecentTopicsPosts_"] li.ipsDataItem { background: #00ff00; } .ipsWidget[data-blockid*="_nbRecentTopicsPosts_"] li.ipsDataItem.ipsDataItem_unread { background: #ff4000; } Result
May 3, 20168 yr @newbie LAC Actually indication with Font Awesome icons (circle and star as it is in IPB) would be better.
May 3, 20168 yr Essential Russian translation strings: nb_tab_rtp_p_posted опубликовал %s nb_tab_rtp_go_post Перейти nb_tab_rtp_t_started cоздал %s nb_tab_rtp_view_topic Перейти Edited May 3, 20168 yr by Safety1st
May 4, 20168 yr Author 15 hours ago, Safety1st said: @newbie LAC Actually indication with Font Awesome icons (circle and star as it is in IPB) would be better. You can do it yourself.
May 4, 20168 yr 1 hour ago, newbie LAC said: You can do it yourself. While I did not post that. Would it be possible to maybe have these two possibilities ('Add Unread Marker' and 'Highlight Unread' (with a hex color code field or color picker)) added as a UI option in a future release. I don't mind editing the the lines to get it working that way for my own site, but I could see it being a feature that others here would like that don't necessarily have that knowledge.
May 4, 20168 yr Author 2 minutes ago, almax said: and 'Highlight Unread' (with a hex color code field or color picker) I think no. There are many skins with different colors. Dark, light, red, green etc. One 'Highlight Unread' color for all will not look good
May 4, 20168 yr Just now, newbie LAC said: I think no. There are many skins with different colors. Dark, light, red, green etc. One 'Highlight Unread' color for all will not look good That is why I added the "with a hex color code field or color picker" so the user could just select their own color of choice.
May 4, 20168 yr Author 4 minutes ago, almax said: That is why I added the "with a hex color code field or color picker" so the user could just select their own color of choice. See examples if I selected #121212 http://ipsfocus.net/4x/ Skin Engraved Looks good Skin Brave Unread and read looks the same Skin Uniform Looks bad
May 4, 20168 yr @newbie LAC that is what @almax is trying to tell. If a color picker or hex color code field is selection is given to user he/she can choose or write the suitable color code according to the theme used.
May 4, 20168 yr Author Just now, ABGenc said: @newbie LAC that is what @almax is trying to tell. If a color picker or hex color code field is selection is given to user he/she can choose or write the suitable color code according to the theme used. Hello, Widgets do not depend on the chosen theme. 1 widget for all themes. In this case 5 skins = 5 pickers, 10 skins = 10 pickers etc
May 4, 20168 yr 1 minute ago, newbie LAC said: Hello, Widgets do not depend on the chosen theme. 1 widget for all themes. In this case 5 skins = 5 pickers, 10 skins = 10 pickers etc I get your point, you are right but there are also several sites ( like mine ) who prefer to run a single theme made default which this option can easily work.
May 5, 20168 yr Author 15 hours ago, Safety1st said: Teach me, please. You can edit template or css Example with css .ipsWidget[data-blockid*="_nbRecentTopicsPosts_"] li.ipsDataItem.ipsDataItem_unread .ipsDataItem_title:before { content: '\f111'; font-family: 'FontAwesome'; font-size: 9px; margin-right: 3px; } Result 1. http://fortawesome.github.io/Font-Awesome/icon/circle/ You need Unicode: f111
May 5, 20168 yr 7 hours ago, newbie LAC said: You can edit template or css I added your code to theme's custom.css. But it must be done for each installed theme. Is there a way to add code once and for all themes simultaneously?
May 5, 20168 yr Author 17 minutes ago, Safety1st said: I added your code to theme's custom.css. But it must be done for each installed theme. Is there a way to add code once and for all themes simultaneously? Try to add css into widget plugins/nb40recenttopicsposts/widgets/nbRecentTopicsPosts.php /* Return */ return $this->output($topics, $posts, $selectedTab, $tabs, $firstTab, $this->configuration, $this->uniqueKey, $widgetTitle); change to $css .= <<<CSS <style> .ipsWidget[data-blockid*="_nbRecentTopicsPosts_"] li.ipsDataItem.ipsDataItem_unread .ipsDataItem_title:before { content: '\\f111'; font-family: 'FontAwesome'; font-size: 9px; margin-right: 3px; } </style> CSS; /* Return */ return $this->output($topics, $posts, $selectedTab, $tabs, $firstTab, $this->configuration, $this->uniqueKey, $widgetTitle) . $css;
May 8, 20168 yr Does this plugin honor the overall forum permissions? Members who do not have permission to view posts or topics in x forum(s) can still see the posts or topics in the block.
May 8, 20168 yr Author 1 hour ago, GrooveOnBeat said: Does this plugin honor the overall forum permissions? Members who do not have permission to view posts or topics in x forum(s) can still see the posts or topics in the block. Hello, Used "read" permissions. Show me forum permissions.
May 8, 20168 yr 5 hours ago, newbie LAC said: Hello, Used "read" permissions. Show me forum permissions. Good call! I forgot that I had moved a forum from public to private and didn't reset the view/read permissions. Thanks!