Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #617531

    I’m working on a site running Enfold with the Pro version of The Events Calendar and have a couple small conflicts that I’m having difficulty resolving.

    1. The hamburger menu disappears on mobile when the month view is loaded: http://quicklaunchweb.com/events/month/

    2. The days of the week in the same view get mashed together in the same view. I edited the plugin files to change the names of each day to abbreviations per these instructions, but it didn’t work.

    Any feedback is welcome if there’s an obvious fix for either of these issues.

    Thanks!

    #619552

    Hey wrsmiles!

    Thank you for using Enfold.

    1.) There is an error coming from a plugin. Please try to deactivate all plugins except for the events calendar then check the page again.

    tribe-events-ajax-calendar.min.js?ver=4.1.2:1 Uncaught TypeError: j.bootstrapDatepicker is not a function
    

    2.) Please add this in the functions.php file to replace the name of day with its abbreviation:

    // day
    add_action( 'wp_footer', 'ava_custom_script_day' );
    function ava_custom_script_day() {
    	?>
    	<script type="text/javascript">
    	(function($){
    		function a() {
                    if($('#header').css('position') != 'relative') return;
    		$('.tribe-events-calendar > thead > tr th').each(function() {
    			var abbr = $(this).data('day-abbr');
    			$(this).empty();
    			$(this).text(abbr);
    		});
    		}
    
    	a();
    	})(jQuery);
    	</script>
    	<?php
    }

    Regards,
    Ismael

    #620224

    Thanks Ismeal!

    #1: The only active plugins are The Event Calendar and its Pro add-on. Deactivating the Pro add-on didn’t fix it. Do you have any other ideas?

    #2: Your suggestion worked beautifully. No problems at all.

    #622826

    Hey!

    1.) I’m still not sure what’s causing the issue. Please post the login details here so that we can check the settings.

    2.) Glad it worked. :)

    Cheers!
    Ismael

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.