• Hi,
    I am setting up my EDD download store. There is a banner with Archives written on it.
    I am wondering how I can remove or make it a header with the store name.

    Any suggestions.

    Thanks in advance.

    Best regards,

    Paul

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi Paul, the easiest way would be with some custom CSS which hides the existing archive title and adds the store name using a pseudo selector and content declaration. I’ve limited this to only download categories by using the tax-download_category css class set in the opening body html tag, and only for archive page types.

    .archive.tax-download_category .page-title {
    	visibility: hidden;
    }
    .archive.tax-download_category .page-title::before {
    	visibility: visible;
    	content: "My Store Name";
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Banner on EDD Store page – labeled Archives’ is closed to new replies.