Daniel Maier

Forum Replies Created

Viewing 15 posts - 46 through 60 (of 79 total)
  • Author
    Posts
  • Daniel Maier
    Participant

    Will the event page show up on the menu?

    I also have a page as a placeholder in order to display the event page in our menu.

    in reply to: Additional Fields doesn't hold option #960186
    Daniel Maier
    Participant

    Thank you!

    in reply to: Additional Fields doesn't hold option #959962
    Daniel Maier
    Participant

    Back-end view:

    https://www.dropbox.com/s/1a4g24r6794m6g8/Screenshot%202015-05-01%2015.24.23.png?dl=0

    That check box will not be checked if you have any quotations on the option description.

    Daniel Maier
    Participant

    I didn’t say or was assuming the other user’s (kasia_codeword) issue is the same as my issue. All I’m saying is that I found a related issue that could possibly help you think of something to help me with my issue. That was all.

    I do understand while similar the issues may not be the same but they may trigger troubleshooting steps that you may have not thought before.

    in reply to: No events showing up after the latest update 3.9.3 #958449
    Daniel Maier
    Participant

    Yes it seems so far the issues I had after upgrading the plugin are fixed. For some strange reason some other plugins may have gotten corrupted after the updates. So after re-uploading them the issues disappeared.

    Thanks!

    in reply to: No events showing up after the latest update 3.9.3 #958168
    Daniel Maier
    Participant

    I’m not sure what caused this. Shortly after I started getting fatal errors related to other plugins. So I re-uploaded the plugins I got fatal errors notices on the month view and it seem to be fixed now.

    Daniel Maier
    Participant

    It appears that this happens only when using the ajax methods to load months. When you look view source, the site name remains in the title.

    You can see the issue is with other sites too: https://wordpress.org/support/topic/page-title-changing-to-undefined-when-using-ajax-links?replies=2 so it is just not with my site.

    in reply to: Switching view mode resets date #957897
    Daniel Maier
    Participant

    That’s strange. I wonder why only on my installation!

    Yes I can confirm that.

    Thanks!

    Daniel Maier
    Participant

    I can’t do that on the production environment and at this time I don’t have a dev environment yet.

    Thanks.

    Daniel Maier
    Participant

    Yes, I’m running the latest version of WordPress SEO.

    Yes, I tried disabling the plugin (SEO) completely and that did not seem to fix the issue with the titles. I also changed the separator on the plugin to a dash and once you start browsing the calendar it adds the pipe at the end without the site name.

    Thanks.

    in reply to: Switching view mode resets date #957649
    Daniel Maier
    Participant

    Yes. Thank you!

    in reply to: Switching view mode resets date #957493
    Daniel Maier
    Participant

    Hi Brian,

    This is what I got from one of our programmers:

    ——————-
    “I did a pretty exhaustive testing routine on this bug. I can’t figure out why it’s only happening on your site. But here’s what I did.

    1) I changed back to a default theme
    2) I disabled all plugins with the exception of the events calendar plugins
    3) I removed the filter bar plugin
    4) I removed all of our JavaScript so the only scripts being called were the ones directly from the events calendar.
    5) I tried uploading brand new versions of the events calendar/pro/filter bar plugins.

    The bug still persists. But the only way to trigger it is to navigate in any direction in the month view, then switch to any other view. If you navigate the dates in any other order, the date you’re on does seem to persist.”
    ——————-

    Do you have any other suggestion?

    Thank you!

    in reply to: Switching view mode resets date #957015
    Daniel Maier
    Participant

    I forgot to mention we did in fact upgrade to jQuery 1.11.2.

    Thanks!

    in reply to: Switching view mode resets date #956995
    Daniel Maier
    Participant

    Brian,

    While I still don’t have the ability to run all the tests for conflicts since my website is in production and my development environment is not ready yet I was able to verify that the issue only happens when switching from and to month view. If you switch any other view but the month view the date is kept and the plugin does not loose it when alternating views. (You may have already stated that but I’m posting here in case you didn’t.)

    Thank you.

    in reply to: Notice: Undefined offset #956993
    Daniel Maier
    Participant

    Hi Brian,

    We have a custom \tooltip.php in \tribe-events\pro\week\tooltip.php

    From your original:

    <?php
    
    /**
     *
     * Please see single-event-hourly.php in this directory for detailed instructions on how to use and modify these templates.
     *
     */
    
    ?>
    
    <script type="text/html" id="tribe_tmpl_tooltip">
    	<div id="tribe-events-tooltip-[[=eventId]]" class="tribe-events-tooltip">
    		<h4 class="entry-title summary">[[=title]]</h4>
    
    		<div class="tribe-events-event-body">
    			<div class="duration">
    				<abbr class="tribe-events-abbr updated published dtstart">[[=startTime]] </abbr>
    				[[ if(endTime.length) { ]]
    				-<abbr class="tribe-events-abbr dtend"> [[=endTime]]</abbr>
    				[[ } ]]
    			</div>
    			[[ if(imageTooltipSrc.length) { ]]
    			<div class="tribe-events-event-thumb">
    				<img src="[[=imageTooltipSrc]]" alt="[[=title]]" />
    			</div>
    			[[ } ]]
    			[[ if(excerpt.length) { ]]
    			<p class="entry-summary description">[[=raw excerpt]]</p>
    			[[ } ]]
    			<span class="tribe-events-arrow"></span>
    		</div>
    	</div>
    </script>

    We had the following:

    <?php
    
    /**
     *
     * Please see single-event-hourly.php in this directory for detailed instructions on how to use and modify these templates.
     *
     */
    
    ?>
    
    <script type="text/html" id="tribe_tmpl_tooltip">
    	<div id="tribe-events-tooltip-[[=eventId]]" class="tribe-events-tooltip">
    		<h4 class="entry-title summary">[[=title]]</h4>
    
    		<strong>[[=raw subTitle]]</strong>
    
    		<div class="tribe-events-event-body">
    			<div class="duration">
    				<abbr class="tribe-events-abbr updated published dtstart">[[=startTime]] </abbr>
    				[[ if(endTime.length) { ]]
    				-<abbr class="tribe-events-abbr dtend"> [[=endTime]]</abbr>
    				[[ } ]]
    			</div>
    			[[ if(imageTooltipSrc.length) { ]]
    			<div class="tribe-events-event-thumb">
    				<img src="[[=imageTooltipSrc]]" alt="[[=title]]" />
    			</div>
    			[[ } ]]
    			[[ if(excerpt.length) { ]]
    			<p class="entry-summary description">[[=raw excerpt]]</p>
    			[[ } ]]
    			<span class="tribe-events-arrow"></span>
    		</div>
    	</div>
    </script>

    And our programmer tweaked to the following, which fixed the JavaScript warning:

    <?php
    
    /**
     *
     * Please see single-event-hourly.php in this directory for detailed instructions on how to use and modify these templates.
     *
     */
    
    ?>
    
    <script type="text/html" id="tribe_tmpl_tooltip">
    	<div id="tribe-events-tooltip-[[=eventId]]" class="tribe-events-tooltip">
    		<h4 class="entry-title summary">[[=title]]</h4>
    		[[ if(typeof subTitle !== "undefined") { ]]
    			<strong>[[=raw subTitle]]</strong>
    		[[ } ]]
    		<div class="tribe-events-event-body">
    			<div class="duration">
    				<abbr class="tribe-events-abbr updated published dtstart">[[=startTime]] </abbr>
    				[[ if(endTime.length) { ]]
    				-<abbr class="tribe-events-abbr dtend"> [[=endTime]]</abbr>
    				[[ } ]]
    			</div>
    			[[ if(imageTooltipSrc.length) { ]]
    			<div class="tribe-events-event-thumb">
    				<img src="[[=imageTooltipSrc]]" alt="[[=title]]" />
    			</div>
    			[[ } ]]
    			[[ if(excerpt.length) { ]]
    			<p class="entry-summary description">[[=raw excerpt]]</p>
    			[[ } ]]
    			<span class="tribe-events-arrow"></span>
    		</div>
    	</div>
    </script>

    That seem to have fixed the problem and the pop-up for all day events is now showing up.

    https://cityofwinterpark.org/events/week/2015-04-12

    Please let me know if you have any comments.
    Thank you for all your help!

Viewing 15 posts - 46 through 60 (of 79 total)