• Hi, sorry, another one.

    I have been trying to implement a couple of Calendar / booking solutions – currently on Event Espresso (Decaf) and having the same issue (faced by many it seems). The Events page effectively seems to call an archive.php template / page – and the absence of a page title means that the page title defaults to ‘Archives’. In nearly all cases this seems to be handled / caused by the Theme code hierarchy and most solutions seem to be suitable code / CSS snippets. All of those who have suffered from this either want the page title to be ‘Events’ or just to hide the ‘Archives’ title.

    I have tried numerous snippet solutions from either the plugin(s) or other Theme providers, and none have worked. Can you offer a quick solution that will help resolve this for me?

    Many thanks for your help and support

    Kind regards

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

Viewing 7 replies - 1 through 7 (of 7 total)
  • @jamestrueman,

    Please try adding following CSS to Additional CSS box and test:

    .post-type-archive-espresso_events .tg-page-header__title {
        display: none;
    }

    The above CSS will remove the archive title from your events page.
    And for displaying Events instead of Archiveyou can try adding the following CSS and test:

    .post-type-archive-espresso_events .tg-page-header__title {
        visibility: hidden;
    }
    
    .post-type-archive-espresso_events .tg-page-header__title::after {
        content: 'Events';
        visibility: visible;
        display: block;      
    }

    Help link https://docs.themegrill.com/knowledgebase/where-do-i-add-my-custom-css/

    Thread Starter jamestrueman

    (@jamestrueman)

    Hi Ashesh

    Thanks for this – the remove CSS didn’t seem to work? The second replace code did = but seems to have added a margin at the top of the page – affecting the position of the header and right sidebar content?

    Are you seeing that? Any ideas?

    Cheers again

    @jamestrueman,

    That was the quick fix so it might not be the best. We have fixed the issue and planning to update the theme along with other enhancement soon. But if you have an urgency to fix the issue you can modify the code via child theme. You can get knowledge about the child theme and download the zakra child theme from the below link.

    https://themegrill.com/blog/tutorial-creating-wordpress-child-theme/

    Thread Starter jamestrueman

    (@jamestrueman)

    Hi Ashesh

    Thanks for the reply and the imminent update.

    Can you advise how the fix is being implemented – what I should look for / or will need to do when that is deployed?

    The site is already set up with a Child Theme. Just for info – I did use your download but then realised I’d need to reconfigure all of the customisation settings (as it was an established site). I ended up using a Child Theme creation plugin as that helped carry over the existing customisations.

    @jamestrueman,

    Did you create CTP manually or did you use plugin to create CPT for the event show on the front?

    Thread Starter jamestrueman

    (@jamestrueman)

    Hi Ashesh

    Sorry – I’m not sure I 100% understand the question?

    I originally used the Zakra Child theme download – but found that none of the configuration formating in the parent theme was taking effect (this may be expected behaviour?). I had the choice of re-configuring the new Child Theme using all of the same customisations / additional CSS – or use a Plugin to create the Child theme and have that copy over the customisation during the build process. I realised that would be much quicker so used the Child Theme Configurator plugin to create the Zakra Child Theme. I then deleted the manually created child theme that I had downloaded from the Zakra blog.

    I hope this provides the information you wanted?

    @jamestrueman,

    Please contact us via our chat support https://zakratheme.com/ for further more discussion and support.

    • This reply was modified 4 years, 8 months ago by Ashesh Magar.
Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Event Espresso – Archives Event page’ is closed to new replies.