Hi all,
Love v.08. Ta muchly!
When you view an entry ie click on the "continue reading" link, text shows in the header. I dont want this to appear. How can I disble it. Is it in the Style.css file? I think it is but im not sure what I have to do. Im quite handy with html but not as good with css. FYI im using the MT3-Independence theme.
Thanks,
Greg
Disable title on detail entry page
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Disable title on detail entry page
You mean that link:
Continue Reading "My Title"...
right?
You cannot disable this via CSS; you must edit the templates' entries.tpl file and modify the Smarty Template code there. Since you are using a MT-X file, just copy the templates/default/entries.tpl to that directory folder and edit it. Replace
with this:
This would still leave the "" intact. If you also want to remove those, you'd need to replace the code with:
to a hardcoded string.
Also look at our Styling/Theming documentation on www.s9y.org - there is described how you can easily create your own template so that changes that you make do not get overwritten when upgrading.
Regards,
Garvin
Continue Reading "My Title"...
right?
You cannot disable this via CSS; you must edit the templates' entries.tpl file and modify the Smarty Template code there. Since you are using a MT-X file, just copy the templates/default/entries.tpl to that directory folder and edit it. Replace
Code: Select all
<br /><a href="{$entry.link}#extended">{$CONST.VIEW_EXTENDED_ENTRY|@sprintf:$entry.title}</a><br /><br />
Code: Select all
<br /><a href="{$entry.link}#extended">{$CONST.VIEW_EXTENDED_ENTRY}</a><br /><br />
Code: Select all
<br /><a href="{$entry.link}#extended">Continue Reading</a><br /><br />
Also look at our Styling/Theming documentation on www.s9y.org - there is described how you can easily create your own template so that changes that you make do not get overwritten when upgrading.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Not quite
Hey Garvin,
I dont want that link removed at all..phew!
When you view a full entry, in the page header, the title of the entry appears in text. Its that text i dont want to appear.
In the following link, note the white text in the top banner. Thats the stuff thats got to go.
http://www.sharedmemories.info/blog/ind ... l#extended
Thanks mate for your time,
Greg
I dont want that link removed at all..phew!
When you view a full entry, in the page header, the title of the entry appears in text. Its that text i dont want to appear.
In the following link, note the white text in the top banner. Thats the stuff thats got to go.
http://www.sharedmemories.info/blog/ind ... l#extended
Thanks mate for your time,
Greg
-
garvinhicking
- Core Developer
- Posts: 30022
- Joined: Tue Sep 16, 2003 9:45 pm
- Location: Cologne, Germany
- Contact:
Re: Not quite
For that you will also need to edit your entries.tpl or your index.tpl
Just look at the files, there are just variables shown, it should be easy to figure it out. If you don't, report back next week and I'll take a closer look.
Regards,
Garvin
Just look at the files, there are just variables shown, it should be easy to figure it out. If you don't, report back next week and I'll take a closer look.
Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/