Zen Cart Logo
Forums / Customization from the Admin / Disabling titles of pages?

Disabling titles of pages?

Locked

Views: 1,575

Results 1 to 7 of 7
This thread is locked. New replies are disabled.
27 May 2008, 8:18 PM
#1
crashley1784 avatar

crashley1784

New Zenner

Join Date:
May 2008
Location:
Alconbury, UK
Posts:
27
Plugin Contributions:
0

Disabling titles of pages?

I was wondering if it's possible to disable or hide the titles of pages displaying underneath the breadcrumbs? I would like to create image titles that will be displayed at the top of some pages via html, and the titles just clutter the page (especially since you can see what it is in the breadcrumbs). I looked through the admin area and didn't see it - is this something that must be done via code?

29 May 2008, 10:23 AM
#2
pasi avatar

pasi

Zen Follower

Join Date:
Mar 2004
Location:
Finland
Posts:
435
Plugin Contributions:
1

Re: Disabling titles of pages?

crashley1784:

is this something that must be done via code?

or with some clever CSS ...

You might try this list I've made by parsing for Heading fields through the default template.

Works for me when I want to set common style to all Headings (since the headings don't have any common style set)

#accountDefaultHeading,
#accountHistoryDefaultHeading,
#acctNewslettersDefaultHeading,
#accountNotificationsHeading,
#addressBookDefaultHeading,
#addressBookProcessDefaultHeading,
#advSearchDefaultHeading,
#advSearchResultsDefaultHeading,
#checkoutConfirmDefaultHeading,
#checkoutPayAddressDefaultHeading,
#checkoutPaymentHeading,
#checkoutShipAddressDefaultHeading,
#checkoutShippingHeading,
#checkoutSuccessHeading,
#conditionsHeading,
#cookieUsageDefaultHeading,
#createAcctDefaultHeading,
#createAcctSuccessHeading,
#customerAuthDefaultHeading,
#discountcouponInfoHeading,
#downloadTimeOutHeading,
#maintenanceDefaultHeading,
#featuredDefaultHeading,
#gvFaqDefaultHeading,
#gvRedeemDefaultHeading,
#gvSendDefaultHeadingDone,
#gvSendDefaultHeadingConfirm,
#gvSendDefaultHeadingSend,
#indexCategoriesHeading,
#indexDefaultHeading,
#productListHeading,
#shoppingCartInfoHeading,
#loginDefaultHeading,
#logoffDefaultHeading,
#pageTwoHeading,
#pageThreeHeading,
#pageFourHeading,
#ezPagesHeading,
#pageNotFoundHeading,
#privacyDefaultHeading,
#allProductsDefaultHeading,
#newProductsDefaultHeading,
#productReviewsDefaultHeading,
#reviewsInfoDefaultHeading,
#reviewsWriteHeading,
#reviewsDefaultHeading,
#shippingInfoHeading,
#cartDefaultHeading,
#siteMapHeading,
#specialsListingHeading,
#sslCheckHeading,
#timeoutDefaultHeading,
#unsubDefaultHeading,
.centerBoxHeading {
   display: none;
}
29 May 2008, 1:26 PM
#3
bigbadboy avatar

bigbadboy

Totally Zenned

Join Date:
Apr 2008
Location:
London
Posts:
557
Plugin Contributions:
0

Re: Disabling titles of pages?

you might want to adapt that slightly to:

visibility:hidden;
display:none;

Just to make sure that every browser gets the point!

29 May 2008, 3:22 PM
#4
crashley1784 avatar

crashley1784

New Zenner

Join Date:
May 2008
Location:
Alconbury, UK
Posts:
27
Plugin Contributions:
0

Re: Disabling titles of pages?

Thanks! That worked beautifully :D

15 Sep 2008, 7:50 PM
#5
justmark avatar

justmark

New Zenner

Join Date:
Aug 2008
Location:
Canada
Posts:
46
Plugin Contributions:
0

Re: Disabling titles of pages?

Hi,
I just got here and I realised that your advice would help me a lot... but I don't know where I have to put that code. Can you help me with some stepts? Thank you!

23 Sep 2008, 10:38 PM
#6
susb8383 avatar

susb8383

Zen Follower

Join Date:
Feb 2008
Posts:
129
Plugin Contributions:
0

Re: Disabling titles of pages?

It goes in includes/templates/YOURTEMPLATE/css/stylesheets.css

24 Sep 2008, 8:58 AM
#7
pasi avatar

pasi

Zen Follower

Join Date:
Mar 2004
Location:
Finland
Posts:
435
Plugin Contributions:
1

Re: Disabling titles of pages?

To make things simpler, create a new stylesheet in the css folder and paste it there...