[SOLVED] How to get an exclamation mark in the site's name?
[SOLVED] How to get an exclamation mark in the site's name?
If I put an exclamation mark in the "site name" field I get these charachters (in red):
My Site Name!
Any ideas? ;)
My Site Name!
Any ideas? ;)
Last edited by buonumore on Sun Jan 10, 2010 2:04 pm, edited 1 time in total.
Re: How to get an exclamation mark in the site's name?
When I put ' Sitename! ' in the field Site Name in the Global Settings it shows Sitename! on my teststite...
Or do you mean something else...
Rolf
Or do you mean something else...
Rolf

- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: How to get an exclamation mark in the site's name?
Not in mine, unfortunately!
In the attached image, thaa'ts what I get with "TEST!".
Thanks Rolf!
[OT] Holland rules, see you there next april!!
In the attached image, thaa'ts what I get with "TEST!".

Thanks Rolf!
[OT] Holland rules, see you there next april!!

- Attachments
-
- test.jpg (4.75 KiB) Viewed 2816 times
Re: How to get an exclamation mark in the site's name?
And what if you put TEST! in the sitename field? Or should that be to simple 
Rolf

Rolf

- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: How to get an exclamation mark in the site's name?
What version are you on? As I recall an issue in previous versions... Current 1.6.6 should work fine....
Ronny
Ronny
Re: How to get an exclamation mark in the site's name?
@Rolf: yes, too simple, I tried it earlier! 
@Ronny: 1.6.6 Bonde
Thanks both!!

@Ronny: 1.6.6 Bonde
Thanks both!!
Re: How to get an exclamation mark in the site's name?
And what if you put TEST! or TEST! in the html template?
Fill in your sitename in stead of {sitename}
Rolf
Code: Select all
<title>{title} | {sitename}</title>
{* The sitename is changed in Site Admin/Global settings. {title} is the name of each page *}
Rolf
- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: How to get an exclamation mark in the site's name?
If I simply replace "{sitename}" with "TEST!", it won't change and remain "TEST".
If I replace "{sitename}" by "TEST!", it appears exactly like that "TEST!".
Maybe it's controlled somewherelse as well??
If I replace "{sitename}" by "TEST!", it appears exactly like that "TEST!".

Maybe it's controlled somewherelse as well??
Re: How to get an exclamation mark in the site's name?
You mean TEST!... I thinkit won't change and remain "TEST".

In the config.php you can try to set the text encoding to utf-8.
A wild guess, but what do you have to loose...

Code: Select all
$config['default_encoding'] = 'utf-8';
$config['admin_encoding'] = 'utf-8';
Within Temptation, cool. Heard of Delain aswell I think

- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -
Re: How to get an exclamation mark in the site's name?
I think I've found where's the misunderstanding between us! 
I'm talking about the "inside theme", not the IE window, or whatever!
It's IN the template that I can't get the exclamation mark to work.
Sorry if I didn't express myself clearly enough!!!
[OT] I only know "April rain" from Delain, and really love it! The singer is a beauty, I love redhead girls!!
I have a very good friend living in Haarlem, Jeroen, so i bought some tickets for the show there (8th april). Unfortunately it will be an acoustic show...

I'm talking about the "inside theme", not the IE window, or whatever!
It's IN the template that I can't get the exclamation mark to work.
Sorry if I didn't express myself clearly enough!!!
[OT] I only know "April rain" from Delain, and really love it! The singer is a beauty, I love redhead girls!!

Re: How to get an exclamation mark in the site's name?
This is where a link to the site would help, it would be obvious what and where the problem is you are talking about...
You sure like the color button
...
You sure like the color button

-
- Forum Members
- Posts: 75
- Joined: Sun Nov 08, 2009 1:31 pm
Re: How to get an exclamation mark in the site's name?
Layout > Templates > {Your templatename}
Find this
Change it to this...
Find this
And then try adding ! rather than the HTML entity value, I just tried this with my CMS and it showed up the ! as a !.{sitename}
Change it to this...
{sitename}!
CMSMS 1.6.7, Apache 2.0 Web Server, Red Hat Linux Server, PHP 5.2.12
Re: How to get an exclamation mark in the site's name?
Thanks a lot for your idea, but unfortunately it didn't work.
I'm using the (beautiful) GreenHills theme.
I don't have the exact line you wrote, but - if I understood your suggestion - i made the following.
I added the exclamation mark...
But... no changes! 
THANK YOU VERY MUCH!!
I'm using the (beautiful) GreenHills theme.
I don't have the exact line you wrote, but - if I understood your suggestion - i made the following.
Code: Select all
<title>{sitename} - {title}</title>
Code: Select all
<title>{sitename}! - {title}</title>

THANK YOU VERY MUCH!!
Re: How to get an exclamation mark in the site's name?
Thats right because you changed the sitename in the webbrowserBut... no changes!

You have to look further down in the template and you will find the line in the post from tgnc.org.uk
Code: Select all
<div id="header">
<h2 class="headright">{sitename}</h2>
<hr class="accessibility" />
</div>

- + - + - + - + - + - + -
LATEST TUTORIAL AT CMS CAN BE SIMPLE:
Migrating Company Directory module to LISE
Migrating Company Directory module to LISE
- + - + - + - + - + - + -