Word "Archive" is on Title of Calendar Page

Home Forums Calendar Products Events Calendar PRO Word "Archive" is on Title of Calendar Page

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #997737
    Christina
    Participant

    I am using the Bridge Theme and am new to using Event Calendar Pro. When I pull up my calendar, the word “archive” appears at the top left of the page. I would like to remove or edit that. I am also unable to export. Was wondering if the words “venue” and “organizer” can be edited to be more specific to my application. Thank you.

    #997862
    George
    Participant

    Hey Christina,

    Thanks for reaching out here. You have a few different questions so I’ll break them out and address them in order:

    I am using the Bridge Theme and am new to using Event Calendar Pro. When I pull up my calendar, the word “archive” appears at the top left of the page.

    If you’re not using the Bridge Theme, does this issue persist? Also, do you have a screenshot of this text or something for example? When I went to http://www.mixcpe.com/, I was met with a “coming soon” page. Do not post any site login information here, as we cannot log into customer sites – but if you have a screenshot of that text for example, or can “un-lock” your site temporarily, that should help a lot.

    I am also unable to export.

    I’m sorry to hear this – what specific exporting do you mean? Do you mean the default WordPress exporter tool? If so, then what is your specific point of failure with this: does the Export page not even load? Does it load but are the exported files you generate invalid or something? Does it just not export more than a few events even though you have many? Describe your specific issue in detail and hopefully we can go from there.

    Was wondering if the words “venue” and “organizer” can be edited to be more specific to my application.

    Yes! 🙂 Absolutely – this is a feature I’m really glad to share with you. It can be achieved by heading to your theme’s functions.php file and adding code like this there:


    add_filter('tribe_venue_label_singular', 'change_single_venue_label' );

    function change_single_venue_label() {
    return 'Company';
    }

    add_filter('tribe_venue_label_plural', 'change_plural_venue_label' );

    function change_plural_venue_label() {
    return 'Companies';
    }

    add_filter('tribe_organizer_label_singular', 'change_single_organizer_label' );

    function change_single_organizer_label() {
    return 'Speaker';
    }

    add_filter('tribe_organizer_label_plural', 'change_plural_organizer_label' );

    function change_plural_organizer_label() {
    return 'Speakers';
    }

    This code changes “Organizer/s” to “Speaker/s” and “Venue/s” to “Company/ies”.

    Where you see the code like this:

    return 'Speakers';

    Just change ‘Speakers’ to what you want in place of “Organizers”, and then save the code and it should well on your site.

    Cheers!
    George

    #997983
    Christina
    Participant

    Thank you for your prompt reply. Much appreciated. I’m sorry, I’m just building my site and haven’t pulled it live yet. I am trying to get the event calendar functioning properly since that is the heart of the information.

    I do have a screenshot, but don’t know how to paste it here. The word “Archive” is at the top left of my main event calendar. The export I was referring to is on all pages to export the listings. That just spins. Neither of these problems occurred with the default wordpress themes.

    I will try to edit the template to change the wording on the default forms.

    #998613
    George
    Participant

    Neither of these problems occurred with the default wordpress themes

    Hey Christina,

    Thanks for your reply. The quote that I highlighted up above reveals the fact these problems stem from your currently-active theme. We unfortunately cannot help with theme issues here, and your best course of action is to contact their support team.

    I was still unable to access your site so I do not have any custom CSS to recommend, unfortunately 🙁

    Sorry to disappoint! But there’s just not more that we can do here. I will close up this ticket for now in regards to these two theme-related tweaks. If other issues arise, come back and open a new thread any time!

    If you get your site live and running with these issues, as well, then come back and open a new thread and be sure to link back to this thread for reference, and mention that the problem is now visible on your site. We might then be able to recommend some simple tweaks to help a bit 🙂

    Cheers!
    George

    #1002876
    Support Droid
    Keymaster

    This topic has not been active for quite some time and will now be closed.

    If you still need assistance please simply open a new topic (linking to this one if necessary)
    and one of the team will be only too happy to help.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Word "Archive" is on Title of Calendar Page’ is closed to new replies.