The user had used out datepicker field to select a date on the backend but only wants to display the Day rather than the entire date.
Solution:
This can be done using the following shortcode.
[types field='agenda-datum' style='text' format='l'][/types]
Where you will replace "agenda-datum" with the slug of the custom field and using the format attribute to choose which component of the date you want to display or how you would like the date to be formatted.
Problem: I have placed some HTML markup generated by a View in my site, but it causes a JavaScript reference error and breaks other jQuery and JavaScript on the page.
Solution: Do not include Views CSS classes that begin with "js-wpv" in the markup of your site unless they are placed by Views automatically. This can cause problems because these classes are used as triggers for specific JavaScript functions required for Views. Triggering those functions without a View will likely lead to unexpected errors.