Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #128934
    catwingz
    Participant

    Hi,
    We would like to remove the author, have the option to remove the date (still deciding), but show tags. A child theme is already active. How can I do this?

    Also, I have checked the box in the customizer to remove comments throughout the site but the icon inviting readers to leave a comment is still being displayed as well as the ‘leave a reply’ box.

    The custom category page I am looking at right now is a custom category archive

    This may be outside the scope of your support but I am hoping you can guide me here. I know you have a lot of ‘featured’ options which I am not taking advantage of which might yield a better result. Among her many categories we have singled out one ‘Podcasts’ which has three subcategories, one of which is ‘Encore Entrepreneurs’. The custom archive page is for the Podcast category. It successfully displays both the category and subcategory content but the names of the subcategories are hidden both in the url and on the page. I currently have the permalinks set to /%category%/%postname%/

    How can I get the names of the subcategories to display? Ideally visitors should be able to select for just one of the three subcategories. Also, at this point I have created a few test posts using the subcategories and find that the subcategories don’t show in the url and the test posts themselves only show on the custom archive page, but not on the page you see when you click on the name of the subcategory in the sidebar list.

    Can you offer me a better way to accomplish this?
    Thank you

    #128984
    tikaram
    Keymaster

    @catwingz : To remove the author add the following additional css.

    .entry-header .byline {
    	display: none;
    }

    To remove the date add the following additional css

    .entry-meta .posted-on {
    	display: none;
    }

    Disabling comments will be fixed in upcoming update. For the time being, add the following css to fix the issue.

    .entry-meta .comments-link{
    	display: none;
    }

    To display the name of subcategory on the podcasts page add the following additional css.

    .category-podcasts .entry-footer {
    	display: block !important;
    }

    Let me know if this resolves your issue.

    Regards,
    Tikaram

    #129260
    catwingz
    Participant

    Hi Tikaram,
    This is all much better. How can I enlarge the size of the text for the subcategories? I tried adding font-size to the CSS for .category-podcasts .entry-footer but it didn’t make a difference.

    Thank you

    #129348
    tikaram
    Keymaster

    @catwingz : Please adjust the font size as desired.

    .category-podcasts .entry-meta span a::before {
    	font-size: 30px;
    }
    .category-podcasts .entry-meta {
    	font-size: 25px;
    }

    Let me know if this resolves your issue.

    Regards,
    Tikaram

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Hide author, possibly date, but show tags + permalink/sub-category/post issue’ is closed to new replies.