Removing the Description from Pages

3 messages Options
Embed this post
Permalink
tonyoconnell () Removing the Description from Pages
Reply Threaded More More options
Print post
Permalink
Hello,

I'm trying to remove description from being displayed on web pages in Plone 3.2. However, I can't find a template in portal view customizations to edit so I can take it out. So I installed Gloworm (which is great by the way) but it doesn't display a references to any template just file:/Applications/Plone/buildout-cache/eggs/Products.Archetypes-1.5.10-py2.4.egg/Products/Archetypes/skins/archetypes/widgets/textarea.pt (line 16)

So does this mean I have to edit the code directly on the file system? Do I actually edit the file in the buildout cache? If so how can I stop the file being replaced every time I run buildout?

Best wishes,

Tony
Espen Moe-Nilssen () Re: Removing the Description from Pages
Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
Personally, I thinkt the description shoud be hidden if it is empty by default

a condition on the <p class="documentDescription" tal:condition here//Description >
 would do this

Then I would just hide the field when editing with css








Den 27. feb. 2009 kl. 15.57 skrev tonyoconnell:


Hello, 

I'm trying to remove description from being displayed on web pages in Plone
3.2. However, I can't find a template in portal view customizations to edit
so I can take it out. So I installed Gloworm (which is great by the way) but
it doesn't display a references to any template just
(line 16)

So does this mean I have to edit the code directly on the file system? Do I
actually edit the file in the buildout cache? If so how can I stop the file
being replaced every time I run buildout?

Best wishes, 

Tony
-- 
Sent from the User Interface & Design mailing list archive at Nabble.com.


_______________________________________________
UI mailing list


_______________________________________________
UI mailing list
[hidden email]
http://lists.plone.org/mailman/listinfo/ui
tonyoconnell () Re: [Plone-UI] Removing the Description from Pages
Reply Threaded More More options
Print post
Permalink
Some javascript/style in this post has been disabled (why?)
Hi Espen, 

I actually want to fill in the description ... i need it for search results, folder listings and seo... i just don't want it displayed on my page. 

However, good idea to hide it using CSS... which if anyone is interested can be done by adding 

.documentDescription {
display: none;
}
 
to plonecustom.css

Am a bit paranoid hiding text using CSS though. I hope Google doesn't think this is keyword spam. Anyone think they will?

Thanks for your advise, 

Best wishes, 

Tony


On 27 Feb 2009, at 22:25, Espen Moe-Nilssen (via Nabble) wrote:

Personally, I thinkt the description shoud be hidden if it is empty by default

a condition on the <p class="documentDescription" tal:condition here//Description >
 would do this

Then I would just hide the field when editing with css