Matthew

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 43 total)
  • Author
    Posts
  • in reply to: recurrence description lost in update #1114202
    Matthew
    Member

    Howdy Mike!

    I made some tweaks to the script that you have been working withΒ and ran it against the data dump that you provided with very positive results! The recurrence data was converted cleanly from the events that I spot checked and each maintained the description fields.

    Here is a GitHub Gist with the modified script:

    https://gist.github.com/borkweb/96bfab2120f6242c834e2b7423599061

    If this script works for you, I’ll work on getting a patch in place to ensure that legacy recurrence data maintains the description field contents.

    Thank you!

    Matt

    in reply to: Non-AJAX navigation for List view #960197
    Matthew
    Member

    It has been a while since we’ve traded messages so I’ll go ahead and close this thread for now. If you run into any other issues – feel free to open another thread!

    in reply to: Meta keys for start and end times #956750
    Matthew
    Member

    It has been a while since our last communication, so I’m going to go ahead and close out this thread. If you have any other questions, don’t hesitate to start a new one! Thank you πŸ™‚

    in reply to: Modifications to event listing page (single-event.php) #956749
    Matthew
    Member

    It has been a while since our last communication, so I’m going to go ahead and close out this thread. If you have any other questions, don’t hesitate to start a new one! Thank you πŸ™‚

    in reply to: Non-AJAX navigation for List view #956114
    Matthew
    Member

    Well shoot, I guess I should have tested that code with a more realistic Event Category name. Sorry about that. Anyhow, give this approach that leverages $wq_query a shot:

    
    global $wp_query;
    
    // default the link to the base events link
    $link = events_get_events_link();
    
    // if you're on a category page, fetch the base link for it
    if ( tribe_is_event_category() && isset( $wp_query->query_vars['tribe_events_cat'] ) ) {
      $link = get_term_link( $wp_query->query_vars['tribe_events_cat'], 'tribe_events_cat' );
    }
    
    in reply to: Title, SubTitle, Venue Name and Date #955677
    Matthew
    Member

    It has been a while since the last time that I heard back from you so I hope that means everything is working well! πŸ™‚ I am going to go ahead an close this thread, but if you have any further questions, don’t hesitate to open a new one!

    Matthew
    Member

    It has been a while since the last time that I heard back from you so I hope that means everything is working well! πŸ™‚ I am going to go ahead an close this thread, but if you have any further questions, don’t hesitate to open a new one!

    in reply to: date time separator #955675
    Matthew
    Member

    It has been a while since the last time that I heard back from you so I hope that means everything is working well! πŸ™‚ I am going to go ahead an close this thread, but if you have any further questions, don’t hesitate to open a new one!

    Matthew
    Member

    Nice! I’m glad you were able to track down the problematic code! I’ll go ahead and close out this ticket but if you run into any other issues, feel free to create a new forum post. πŸ™‚

    Matthew
    Member

    I wish you well on your quest! Sorry the fixes didn’t pan out – I’ll go ahead and close this thread for now. If you run into any other issues – feel free to open another thread!

    Matthew
    Member

    I’m so sorry this isn’t working as expected! Your theme must be doing something interesting with the plugin loading process. I’ve updated that plugin that you tried with a last ditch effort that I just thought of. Give it a shot again (re-download it and install it from here)!

    If that doesn’t work, I believe I’ve reached the end of what I can research and attempt from here without stepping over into doing customization work for your site. One last attempt! Let me know πŸ™‚

    Matthew
    Member

    Bummer! Let’s try one last thing! I’ve moved the code snippet into a plugin that you can try activating that will hopefully hide that drop-down box. You can view instructions on downloading and activating it here.

    My fingers are crossed as I await the results πŸ™‚

    in reply to: Non-AJAX navigation for List view #953692
    Matthew
    Member

    Whoops – sorry about that! Fetching that link isn’t something that we have in The Events Calendar as a single functionc all. However, you can retrieve that link using WordPress’ get_term_link() function in conjunction with our tribe_is_event_category() and tribe_meta_event_category_name() functions. With something like this:

    
    // default the link to the base events link
    $link = events_get_events_link();
    
    // if you're on a category page, fetch the base link for it
    if ( tribe_is_event_category() ) {
      $link = get_term_link( tribe_meta_event_category_name(), 'tribe_events_cat' );
    }
    

    Perhaps a bit more than what you were hoping, but it should do what you are looking to accomplish. Let me know how it goes!

    Matthew
    Member

    Howdy! Sorry that snippet is still causing some difficulties! When applying that snippet to my Twentyfifteen theme (a default theme for WordPress), the Use Saved Organizers box does not appear on the page:

    Screen Shot 2015-04-06 at 9.00.08 PM

    It appears that there may be something custom on your site that doesn’t play well with that snippet. You could attempt to change the add_action call in that snippet from ‘init’ to ‘wp’ to see if you get better results.


    //change:
    add_action( 'init', 'my_organizer_dropdown_remover' );

    //to:
    add_action( 'wp', 'my_organizer_dropdown_remover' );

    Hopefully that will get you where you need to go! If you find that you need more modifications that you don’t feel comfortable exploring the code yourself and do not know someone whom you can hire, have no fear! We actually keep a list of freelancers who are quite capable of making changes on your behalf. You can obtain this list by emailing [email protected] and requesting it.

    That being said, I’m hopeful that the switch to the add_action call will help πŸ™‚ Let me know either way!

    in reply to: Non-AJAX navigation for List view #953409
    Matthew
    Member

    The events_get_events_link() function should return the events link sans /list/. Let me know if that works for you!

Viewing 15 posts - 1 through 15 (of 43 total)