Home Forums Free Themes News Vibe Event calendar page displays “Archives:Events”

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #132655
    zanimul
    Participant

    I want to remove the “Archives” from the page top that you can see here: https://vetteclub.org/events/month/

    We use “The Event Calendar” by “Modern Tribe, Inc.” On top of removing “Archives” from the page I want to shrink the size of that area, how can I do that.

    I really like this theme, even though it’s more than what my client asked for, it leaves me room to add some more interest to the site.

    #132741
    wensolutions
    Keymaster

    Hello,

    Regarding your query, you can add the below-given code in the function.php file of the theme.

    add_filter('get_the_archive_title', function ($title) {
      return preg_replace('/^\w+: /', '', $title);
    });

    To make the customization, you should not make any modification directly in your parent theme as all of the customizations will be lost upon update to the latest version of the theme and the same situation is here when you reinstall the theme.

    So please go through the child theme for the changes and shift all your customizations in the child theme before you uninstall the theme. You can refer to the below-given documentation link to get detailed assistance on how to create a child theme.

    https://wptravel.io/how-to-create-a-child-theme/

    Hope this helps.

    If you have further queries, let us know.

    Regards.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.