marsbar:
I am wondering whether there is a non core-destructive way to hide/suppress the "$lastPosterIcon" from the "Last reply" column of my "Recent discussions" list
Try to set:
$lastPosterIcon='';
in
setup_options.php and pls report if it helped.
Note that this icon is also present in forum listings, but setting it like above should remove it from both sections.
marsbar:
Is there a non core-destructive way to make "{$LinkToLastPostInTopic}" output text (e.g. View latest reply) instead of "»»"?
I think this could be done applying some codes in parseTopic() if you set it or modify in bb_blugins.php:
function parseTopic(){
/* rewriting $LinkToLastPostInTopic */
if(isset($GLOBALS['LinkToLastPostInTopic']) and $GLOBALS['LinkToLastPostInTopic']!=''){
$GLOBALS['LinkToLastPostInTopic']='<a href="'.$GLOBALS['lmurl1'].'" class="mnblnk">View latest reply</a>';
}
/* --rewriting $LinkToLastPostInTopic */
}
marsbar:
Is there a need to update all add-ons after each core upgrade?
It is a recommended action. However if your add-ons work as earlier, and if you are satisfied with them, you could sometimes skip immediate updates. Looking at your add-ons list, I couldn't remember there were critical security issues in these packages in the recent years. Whatever updates were made, are for the Mobile version or template changes and possibly minor fixes. The major fixes were in the file-uploading related add-ons (FileBank or File Attachments).
For compatibility of your add-ons, you have to check the add-on's release notes, they are listed in the README.txt file of each add-on's at the top of file - and I mean you should check these notes for the add-ons
you have installed. The miniBB version means the initial version this or that add-on could work with. So for example, the Captcha add-on we have now, could work with miniBB starting v3.1, that means, the older version you have could definitely work with your upgraded forum.
If some add-on was updated with a notable change, I always mention it in our
Tidings, so you may to check this section as well - starting from the date of your latest upgrade and then following topics created later this date.