Viewing 1 replies (of 1 total)
  • Hi jumust,

    This is not too easy to do with the current version of the plugin. We will soon be making some templating changes that will make this much easier. For now though, depending on your theme you will need to conditionally detect if you are on one of the events pages and then either adjust the CSS or PHP to affect the sidebars… Here is some conditional code that will help but you will need a fairly good knowledge of CSS and/or PHP to take this further.

    if(tribe_is_month()) { //Calendar Grid
    
    } else if(tribe_is_event() && !tribe_is_day() && !is_single()) { //Event List
    
    } else if(tribe_is_event() && !tribe_is_day() && is_single()) { //Single Event
    
    } else if(tribe_is_day()) { //Single Day
    
    } else { //everything else
    
    }
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: The Events Calendar] Full width template vs. my theme template with sidebar’ is closed to new replies.