• Resolved scobham

    (@scobham)


    Hi,
    On the category pages, that selects all the posts in that category, there is a green bar at the top with the following text “Archive for nameofcategory” I would like to remove the “Archive for” text so just the name of the category is showing. Is that possible?

Viewing 7 replies - 1 through 7 (of 7 total)
  • Please add link to your project.

    Thread Starter scobham

    (@scobham)

    Theme Author Richie KS

    (@rkcorp)

    you will need to manual remove it in meosocolumn/lib/templates/headline.php, delete all text like

    <?php _e(‘Archive for’, ‘mesocolumn’); ?>

    or simply disable the archive headline in customizer->general->misc->enable archive headline.

    HI
    There is no such option like customizer – general-…- enable archive headline.
    When removing manaually only this text <?php _e(‘Archive for’, ‘mesocolumn’); ?>

    should be removed or all the lines and other ifs ?

    Thread Starter scobham

    (@scobham)

    Fantastic!
    Thank you so much.

    amimshah

    (@amimshah)

    Hello, I am facing similar issue. I am trying to replace “Archive for nameofcategory” with “More From nameofcategory” .n the category pages. If I delete <?php _e(‘Archive for’, ‘mesocolumn’); ?>, headline vanishes completely. Is there a work around?

    mpsahu2014

    (@mpsahu2014)

    Hi,

    No need to delete that line, just replace the words within the quotes i.e. ‘ Archive for’ with your words i.e. ‘ More From’

    before the changes the line will be like
    <?php _e(‘Archive for’, ‘mesocolumn’); ?>

    after the changes the line will be like
    <?php _e(‘More From’, ‘mesocolumn’); ?>

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Remove 'Archives for' text from category pages’ is closed to new replies.