I am having problems with the recent topics block.
How can I change the date & time on these ? I am not sure what file I need to edit in order to remove the date & time from even showing up.
This might be due to my theme but the formatting appears to be done in such a way that depending on the amount information it takes up either one or two lines.
You can find the sp_recent in PortalBlocks.php
And you are correct -- depending on the space you fit the block into, it might take up either one or two lines per entry.
I found
'<br />[', $item['time'], ']
but it seems that whenever I remove this I loose all formatting on my latest topics block and few others as well.
Any idea what section of it I can take out to get ride of the time (even time & date) without messing it all up ?
I don't see anything broken after removing
<br />[', $item['time'], ']
Can you show us screenshot how it looks for you after removing that part?
You want to find
'<br />[', $item['time'], ']</span><br />',
and change it so it looks like
'</span><br />',
You do not want to remove that initial ' that is before the <br />, or you will have a php syntax error.
You are actually removing
<br />[', $item['time'], ']
good luck!