Jump to content

solved topics


Recommended Posts

Yeah I also liked the green background in the solved topics. I think that it can replace the "[sOLVED]" part in the titles- the icon and background should be enough imo. But that's more work for the admins so I don't think it's necessary.

 

I think the old "new" (paradox? :P) icons were better too. They were more visible and did not blend with sticky titles. Sometimes I miss it in long sticky titles.

Except that, the old ones had a much nicer color.

 

Orio.

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-661853
Share on other sites

Yeah I also liked the green background in the solved topics. I think that it can replace the "[sOLVED]" part in the titles- the icon and background should be enough imo. But that's more work for the admins so I don't think it's necessary.

 

The person who coded the mod made it so that if the title starts with "[sOLVED]" then it's solved, so it's not possible. Stupid? Yeah, I know.

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-661868
Share on other sites

TBH I do not think that simply having it green is enough.  Average people who come in here having not been here before and read threads like this will not know the difference between a green post and a blue post; there's no reason why anybody should make that logical leap. 

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-661883
Share on other sites

The person who coded the mod made it so that if the title starts with "[sOLVED]" then it's solved, so it's not possible. Stupid? Yeah, I know.

 

No, actually I made it so that if the icon that is being used happens to be a check mark (topic_solved)...THEN it's solved.

The SOLVED thing can be changed to anything...just change it in

Configurations > Mods > Topic Solved > Prefix

or actually just change the solved method to just a check mark.

 

but still the prefix still looks pretty aesthetically pleasing.

 

The only thing that sucks about this new background mod...is for some reason it won't work on the recent replies...

if you click View replies since last logged in and such.....the solved buttons are the same old none background one

 

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-662049
Share on other sites

Yup... found it:

 

	// Is this topic solved?
if ((substr($topic_solved['subject'], 0, $prefixLength) == $modSettings['topic_solved_prefix'] && in_array($modSettings['topic_solved_type'], array(0, 1)) || $topic_solved['icon'] == $modSettings['topic_solved_icon'] && in_array($modSettings['topic_solved_type'], array(0, 2))))
	$context['topic_solved'] = true;
else
	$context['topic_solved'] = false;

 

In $sourcedir/Display.php.

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-662069
Share on other sites

Topic solved can be configured so when a topic is solved it'll either change the Post Title, Post Icon or Both.

 

EDIT:

The only thing that sucks about this new background mod...is for some reason it won't work on the recent replies...

if you click View replies since last logged in and such.....the solved buttons are the same old none background one

This is due to a different template is being used for the Updated Topics page. From what I can tell its handled by Recent.templete.php

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-662070
Share on other sites

TBH I do not think that simply having it green is enough.  Average people who come in here having not been here before and read threads like this will not know the difference between a green post and a blue post; there's no reason why anybody should make that logical leap. 

 

You got a point there. I guess it's better to be left alone as it is.

 

Orio.

Link to comment
https://forums.phpfreaks.com/topic/127775-solved-topics/#findComment-662582
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.