Support

Home Forums Event Espresso Premium Column overlap in back end

Column overlap in back end

Posted: August 5, 2015 at 12:04 pm

Viewing 2 reply threads


thinkbiglearnsmart

August 5, 2015 at 12:04 pm

We’ve just upgraded and are seeing text overlapping the columns in the Attendee reports, is there a way to avoid this? Screenshot: http://screencast.com/t/J7KHZIHOVkC


Dean

August 6, 2015 at 4:11 am

Hi,

The only way I can see to resolve it currently is with this small function.

function stop_ee_nowrap() {
	$screen = get_current_screen();
	if ($screen->base != 'event-espresso_page_events') {
		return false;
	}
	else {
		?>
		<style type="text/css">
		#table td { white-space: inherit; }
		</style>
		<?php
	}
}
add_action('admin_head', 'stop_ee_nowrap');

Add it to a site specific plugin (https://eventespresso.com/wiki/create-site-specific-plugin-wordpress-site/) and it should fix the issue for you.


thinkbiglearnsmart

August 6, 2015 at 3:10 pm

Thanks! That works!

Viewing 2 reply threads

The support post ‘Column overlap in back end’ is closed to new replies.

Have a question about this support post? Create a new support post in our support forums and include a link to this existing support post so we can help you.

Event Espresso