Steve

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 51 total)
  • Author
    Posts
  • Steve
    Participant

    Current PHP version: 5.6.32
    Your server’s PHP cURL version information and features:
    cURL version: 7.57.0
    Host: x86_64-redhat-linux-gnu
    IPv6 support: yes
    Kerberos V4 support: no
    SSL support: yes
    SSL version: OpenSSL/1.0.2m
    libz HTTP deflate support: yes
    libz version: 1.2.3
    Protocols: dict, file, ftp, ftps, gopher, http, https, imap, imaps, ldap, ldaps, pop3, pop3s, rtsp, scp, sftp, smb, smbs, smtp, smtps, telnet, tftp

    Steve
    Participant

    Hmm, a little. I still have my license for Event Agg + ECP, Expires on: Mar 9th, 2018.

    I’m not sure why there was another event agg license on there and expiring at that, but so long as my current licenses are fine (they seem to be ) and I stop getting nags, I’m happy 🙂 Thanks

    Steve
    Participant

    That should be the only expired license is the discontinued addon. Was a different license notification removed earlier? I’m confused 🙂

    Steve
    Participant

    Just got another notice in the email today. :/

    —-

    Hi Steve,

    We hate to tell you this, but you’ve been missing out. ?

    In just the past 10 months, we’ve released over 60 updates for our premium plugins. Since you have an expired license, you didn’t get all of those updates for your site.

    Lucky for you, it’s not too late to renew and update your plugins to the latest versions. You’ve still got one week left to use your 10% off renewal discount – take advantage now so you don’t miss any other releases.
    Save 10% now

    Not sure which license is expired? Your License Keys page lists any expired licenses for your account. Use your 10% discount to renew them all with coupon code Renewal10.

    Steve
    Participant

    Sure, we don’t use it any longer since it’s been discontinued, just need ECP and Event agg current licenses. Thanks!

    Steve
    Participant

    Same exact issue here. Hope a fix is released soon. Thanks!

    in reply to: Month View bug in latest update #1290441
    Steve
    Participant

    re: API I had no set that up and was getting a google maps api console error.

    The KB was helpful here as was another support staff’s response on the wp.org forums. Basically, turn off HTML minification for Calendar items/pages to resolve as they are already minified.

    Thanks

    in reply to: Month View bug in latest update #1288621
    Steve
    Participant

    Here is the thread on the Autoptimize forum— Maybe TEC devs can have a look at this? Thanks

    https://wordpress.org/support/topic/html-css-optimize-breaks-the-events-calendar-month-display/#post-9165238

    in reply to: Month View bug in latest update #1288599
    Steve
    Participant

    Got it! It’s a conflict with the popular Autoptimize plugin. I only have HTML and CSS minify on, so this is rather strange. I’ll check in with that plugin dev.

    in reply to: Month View bug in latest update #1288591
    Steve
    Participant

    Setting up Google API didn’t help. I do get the following in the console when I hover over an event, but only in firefox:

    Using //@ to indicate sourceURL pragmas is deprecated. Use //# instead[Learn More] tribe-events.min.js:18:166

    in reply to: Month View bug in latest update #1288585
    Steve
    Participant

    I was wrong, I removed the custom templates from the theme and the problem persists.

    Nothing useful came out of debug either.

    I’m getting Google API errors, maybe if I sort that out the problem goes away. let’s see..

    in reply to: Month View bug in latest update #1288577
    Steve
    Participant

    I think this is related to a customized month.php and /month/content.php in my theme files. The reason I’m customizing these is because I want to display the event category description above the calendar. Relatively basic function but apparently I can’t do this without changing the template code. Is there a way to do this with a hook/filter so I don’t have to worry about custom template not working after updates? Yes I’m all up to date on updates. Thanks.

    My month.php:

    <?php
    /**
     * Month View Template
     * The wrapper template for month view.
     *
     * Override this template in your own theme by creating a file at [your-theme]/tribe-events/month.php
     *
     * @package TribeEventsCalendar
     *
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	die( '-1' );
    }
    
    do_action( 'tribe_events_before_template' );
    
    ?>
        <div id="events-category">
        <?php if( is_tax() ) {
     	 echo term_description( get_queried_object_id(), 'tribe_events_cat' );
    	} ?>
        </div>
    
    <?php 
    // Tribe Bar
    tribe_get_template_part( 'modules/bar' );
    
    // Main Events Content
    tribe_get_template_part( 'month/content' );
    
    do_action( 'tribe_events_after_template' );

    my month/content.php:

    <?php
    /**
     * Month View Content Template
     * The content template for the month view of events. This template is also used for
     * the response that is returned on month view ajax requests.
     *
     * Override this template in your own theme by creating a file at [your-theme]/tribe-events/month/content.php
     *
     * @package TribeEventsCalendar
     *
     */
    
    if ( ! defined( 'ABSPATH' ) ) {
    	die( '-1' );
    } ?>
    
    <div id="tribe-events-content" class="tribe-events-month">
    
    	<!-- Month Title -->
    	<?php do_action( 'tribe_events_before_the_title' ) ?>
        
        <div id="events-category">
        <?php if( is_tax() ) {
     	 echo term_description( get_queried_object_id(), 'tribe_events_cat' );
    	} ?>
        </div>
        
    	<h2 class="tribe-events-page-title"><?php tribe_events_title() ?></h2>
    	<?php do_action( 'tribe_events_after_the_title' ) ?>
    
    	<!-- Notices -->
    	<?php tribe_the_notices() ?>
    
    	<!-- Month Header -->
    	<?php do_action( 'tribe_events_before_header' ) ?>
    	<div id="tribe-events-header" <?php tribe_events_the_header_attributes() ?>>
    
    		<!-- Header Navigation -->
    		<?php tribe_get_template_part( 'month/nav' ); ?>
    
    	</div>
    	<!-- #tribe-events-header -->
    	<?php do_action( 'tribe_events_after_header' ) ?>
    
    	<!-- Month Grid -->
    	<?php tribe_get_template_part( 'month/loop', 'grid' ) ?>
    
    	<!-- Month Footer -->
    	<?php do_action( 'tribe_events_before_footer' ) ?>
    	<div id="tribe-events-footer">
    
    		<!-- Footer Navigation -->
    		<?php do_action( 'tribe_events_before_footer_nav' ); ?>
    		<?php tribe_get_template_part( 'month/nav' ); ?>
    		<?php do_action( 'tribe_events_after_footer_nav' ); ?>
    
    	</div>
    	<!-- #tribe-events-footer -->
    	<?php do_action( 'tribe_events_after_footer' ) ?>
    
    	<?php tribe_get_template_part( 'month/mobile' ); ?>
    	<?php tribe_get_template_part( 'month/tooltip' ); ?>
    
    </div><!-- #tribe-events-content -->

    Thanks

    in reply to: Month View bug in latest update #1288025
    Steve
    Participant
    in reply to: Page not found / issues with recurring events #1259028
    Steve
    Participant

    I’m afraid I don’t have time to run through this right now, we have a rather conventional set of plugins, conventional server, etc. Can you please provide information on timeout/memory issues with ECP? Has anyone else experienced issues like this? Looking for some quick tips on how we might address the timeout issue. Thanks

    in reply to: Moving to Event Aggregator – No Import Wizard offered #1206151
    Steve
    Participant

    Yeah, as I mentioned I followed the instructions. What did not happen is the prompt. It would be helpful if included in the instructions is a way to manually bring the prompt up or some solution that allows for importing your old fb event aggregator settings. Would have saved a lot of time. Thanks.

Viewing 15 posts - 16 through 30 (of 51 total)