| lukgoh | 
					 | 
			
|---|---|
| 
					 I was wondering what the correct method was for setting a stand alone plugins title. At the minuet it is displaying "Tags" for some reason and I can't work out why. (Tags - Website Name)  | 
			
| Twiebie | 
					 | 
			
|---|---|
| 
					 Try putting something like this in the lang file of the plugin: $L['plu_title'] = 'Title Here';  | 
			
| lukgoh | 
					 | 
			
|---|---|
| 
					 I have this: $L['plugin_title'] = 'Categories';  | 
			
| Trustmaster | 
					 | 
			
|---|---|
| 
					 In Siena it is this: $out['subtitle'] = 'Some string or $L here'; May the Source be with you! 
					 | 
			
| lukgoh | 
					 | 
			
|---|---|
| 
					 Thank you Trustmaster, for the fun of learning, why does it adopt "Tags" as its defualt?  | 
			
| Trustmaster | 
					 | 
			
|---|---|
| 
					 Because that's the last plugin that sets $L['plu_title'] by that moment. As Twiebie noticed, $L['plu_title'] can also be used to set a plugin title, but $out['subtitle'] has higher priority. May the Source be with you! 
					 | 
			
| lukgoh | 
					 | 
			
|---|---|
| 
					 Okay got it, thanks for the reply.  |