How to make events the full width of the cell?
Thank you!
How to make events the full width of the cell?
Thank you!
Hello,
If you don’t need selection menus, you can fully disable them and reuse available space by using
scheduler.config.details_on_dblclick = true;
scheduler.attachEvent("onClick",function(){ return false; });
scheduler.xy.menu_width = 0;
Kind regards,
Ilya
Thank you for the quick response but I’m new to this app and do not know where to put this code in the Wordpress plugin. Does it go somewhere on the Templates settings screen or ??
Hi,
you have to place it into file yourwordpress/wp-content/plugins/event-calendar-scheduler/scheduler_include.html like here:
<script>
scheduler.config.details_on_dblclick = true;
scheduler.attachEvent("onClick",function(){ return false; });
scheduler.xy.menu_width = 0;
</script>