• Resolved rholdstock

    (@rholdstock)


    I’m using The Events Calendar and Events Tickets Plus plugins on the OceanWP theme all is working fine but I have template issues with the attendee registration page. The main issue is that the page header with it’s background image is missing on this page. I would also like to lose the right sidebar, I’ve tried the code I found here – https://www.ads-software.com/support/topic/conflict-with-event-calendar-2/ – but it just removes the sidebar from the events pages.

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

Viewing 5 replies - 1 through 5 (of 5 total)
  • Amit Singh

    (@apprimit)

    Hello,

    I checked your site and the page header is appearing fine on your site.

    Thread Starter rholdstock

    (@rholdstock)

    Hi Amit,

    Sorry it hadn’t been set as the attendee registration page in the event ticket settings – I’ve done this now, could you have a look again:
    https://staging.letswalkbristol.co.uk/attendee-registration/
    The default template is https://staging.letswalkbristol.co.uk/attendee-registration-1/ – it looks the same to me…

    For the page header, add the below code to the CUstomize > Custom CSS section to fix it –

    body.page-tribe-attendee-registration footer.entry-header, body.page-tribe-attendee-registration header.entry-header, body.page-tribe-attendee-registration header.entry-meta, body.page-tribe-attendee-registration header.page-header, body.page-tribe-attendee-registration span.edit-link {
        display: block;
    }

    For the sidebar, have you added the below code to the child theme’s functions.php file –

    function my_post_layout_class( $class ) {
    
    	// Alter your layout
    	if ( tribe_is_event()
    		|| tribe_is_view()
    		|| tribe_is_list_view()
    		|| tribe_is_event_category()
    		|| tribe_is_in_main_loop()
    		|| tribe_is_day()
    		|| tribe_is_month()
    		|| is_singular( 'tribe_events' ) ) {
    		$class = 'full-width';
    	}
    
    	// Return correct class
    	return $class;
    
    }
    add_filter( 'ocean_post_layout_class', 'my_post_layout_class', 20 );
    Thread Starter rholdstock

    (@rholdstock)

    Thank you for your help.

    You’re welcome!

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Event Tickets Plus (modern tribe) conflict’ is closed to new replies.