"Calendar Of Events" title change

Home Forums Calendar Products Events Calendar PRO "Calendar Of Events" title change

Viewing 15 posts - 16 through 30 (of 50 total)
  • Author
    Posts
  • #15325
    Peter
    Member

    What theme should I try to revert?

    #15356
    Rob
    Member

    Peter: you’d want to give this a go on the default 2011 WordPress theme.

    #15691
    Peter
    Member

    When I try to activate the Twenty Eleven 1.3 theme from WordPress the header is only showing “Calendar of Events”.

    Is the issue now located in the Karma theme I am using?

    #15773
    Rob
    Member

    Thanks for confirming, Peter. It does sound like there is a problem on the theme side there. Does that point you in the right direction? Has your dev modified the theme at all or customized it in any way?

    #15827
    Peter
    Member

    The only modifications made to this theme is the following.

    ——————————————————
    .content_full_width {font-size:14px !important;}
    #header .logo {margin-top: -32px !important;}
    #header .logo {width:960px !important;}
    #header .logo {text-align:center !important;}
    .header-holder {height: 154px !important;}
    #menu-main-nav {width:790px !important;}
    #menu-main-nav {margin-right:64px !important;}
    .home-flash-slider {width:840px !important;}
    .home-flash-slider {margin-top:115px !important;}
    #menu-main-nav .drop ul a span {font-size:16px !important;}
    #menu-main-nav .drop ul a span {text-align:left !important;}
    .page-id-227 #content .message_blue, .page-id-227 .content_full_width .message_blue {width:580px !important;}

    #tribe-events-calendar-header .tribe-events-calendar-buttons {
    margin-top: 0;
    }
    ——————————————————

    Besides these modifications the theme is complete standard.

    #15849
    Rob
    Member

    Alright. Thanks for confirming. Not sure about this myself, but let me see if our dev Jonah has any ideas when he hits the forum later today. Stay tuned.

    #15863
    Julien
    Participant

    You should use WordPress SEO plugin and you will be able to change most of titles (not calendar titles)

    #15872
    Peter
    Member

    > Rob
    Thanks. I will stay tuned.

    > Julien
    I need to change the calendar title saying “Calendar of EventsCalendar of Events”.

    #15930
    Jonah
    Participant

    Hi Peter,

    Depending on what setting you have for the Events Template in Settings > The Events Calendar, you’re going to want to add this code to either your page.php or ecp-page-template.php files.


    if(tribe_is_month()) {
    echo 'Calendar Grid';
    } else if(tribe_is_event() && !tribe_is_day() && !is_single()) {
    echo 'Event List';
    } else if(tribe_is_event() && !tribe_is_day() && is_single()) {
    echo 'Single Event';
    } else if(tribe_is_day()) {
    echo 'Single Day';
    } else {
    the_title();
    }

    Does that help? What do you have for that setting?

    #16032
    Peter
    Member

    Hi Jonah,

    I’ve tried to add the code to ecp-page-template.php without any result. I can’t find the page.php file. Where might that be located?

    #16056
    Rob
    Member

    Hey Peter, the page.php file would be in your theme (not the plugin itself). That help?

    #16057
    Peter
    Member

    Before I add any code to the page.php file, I would like to know where exactly in that file, I should please the code.

    Before, after, in between what part of the code?

    #16118
    Rob
    Member

    OK, thanks. My guess is that pretty much anywhere would be fine and is probably worth a go if you haven’t already, but I want to have Jonah confirm. Will get him to take a look today.

    #16127
    Peter
    Member

    I’ve tried to paste the code in the middle of the existing code and no change was made to the frontend.

    #16135
    Jonah
    Participant

    Hi Peter, in page.php do you have the the_title() function anywhere? If not, this won’t work. You need to use the code wherever the the_title() function is being called in your theme. It varies theme to theme so you’ll need to look around for it. What theme are you using?

Viewing 15 posts - 16 through 30 (of 50 total)
  • The topic ‘"Calendar Of Events" title change’ is closed to new replies.