Sean

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 27 total)
  • Author
    Posts
  • in reply to: Add Event Form Cut off below Use Saved Venue #217550
    Sean
    Participant

    yes its working, ill put a little fishing line and some duct tape on the memory and hopefully that’l stop that stubborn memory leak!

    thanks for pointing me in the right direction

    Sean

    in reply to: Add Event Form Cut off below Use Saved Venue #216023
    Sean
    Participant

    found the offending plugin, WordPress Importer… fortunately its not something we need but it is odd this causes an issue

    WordPress Importer


    if i deactivate it the form is fine.

    in reply to: Add Event Form Cut off below Use Saved Venue #215531
    Sean
    Participant

    something is very odd here, i can completely delete the contents of edit-event.php and i do not see any difference in the output.

    in reply to: Add Event Form Cut off below Use Saved Venue #215516
    Sean
    Participant

    ill check it out and report back. one thing i noticed is this happened before and i emailed pro@ with no response. an update came out and it started working. so i never followed up.

    in reply to: Add Event Form Cut off below Use Saved Venue #210408
    Sean
    Participant

    no overrides.
    doing the “Standard trouble shooting” is a HUGE problem, i wont go into why but i would have to duplicate the site to do that.
    obviously there is a conflict, my experience has been i find the other plugin that conflicts i still end up stuck in the middle of its not us its them/they need to fix this or that from both sides. if you can point me to the file(s) that load the form i can take it from there and save my self a ton of back and forth.

    what is loaded right after “Use Saved Venue”? i have searched the plugin files and can’t find that string in any file.

    Sean

    Sean
    Participant

    its ok, that happens to all guys at some point…

    this should help, looks like i need 2 functions. so where specifically in the new documentation would i find this information? i am all about self help… when i can find it 🙂

    in reply to: add html above calendar for a specific a category. #116232
    Sean
    Participant

    i was thinking i could remove the last $html variable and it would overwrite anything in tribe_events_before_html but this seems to break the page. should i include a closing tag or something rather than just deleting the variable?

    if ( tribe_meta_event_category_name() == "CATEGORY NAME" ) $html = '<p> HTML </p>' . $html;

    in reply to: add html above calendar for a specific a category. #116002
    Sean
    Participant

    here is what i came up with… feel free to comment on how to improve. it may be better to query the slug but i have not found a reference in the doc’s yet.


    add_filter( 'tribe_events_before_html', 'add_text_before_events' );
    function add_text_before_events( $html ) {
    if ( tribe_meta_event_category_name() == "CATEGORY NAME" ) $html = '<p> HTML </p>' . $html;
    return $html;
    }

    in reply to: add html above calendar for a specific a category. #115963
    Sean
    Participant

    i will give this a try and report back,

    it looks like i was not completely clear on filters and hooks. looking through the docs and there are 2 different links i have found,
    https://theeventscalendar.com/support/documentation/
    and the one you gave me http://docs.tri.be/
    the first link only makes reference to 3 filter/hooks and the 2nd looks more like code reference with out much info on what can be used at least for my question about tribe_events_before_html
    i had an email conversation with Rob and it looks like this is under revamp.

    Sean

    in reply to: add html above calendar for a specific a category. #112493
    Sean
    Participant

    not really, i am not able to find anything other than the tribe_events_before_html function is located in general.php in the links above. can you be a little more specific on where to find information on the tribe_events_before_html filter hook, or documentation on how to use filter hooks in general?

    in reply to: add html above calendar for a specific a category. #111043
    Sean
    Participant

    is this something that could be accomplished with tribe_events_before_html() wrapped in a conditional?

    in reply to: add html above calendar for a specific a category. #110642
    Sean
    Participant

    well i thought html above a calendar for a specific category pretty much said it. but to clarify, we would like to add html above any view for a category, IE Month, List, week, day, map, photo or a specific event in the easter category. as long as what is displayed in the easter category, the html is above the Month, List, week, day, map, photo views or a specific event. the html would always be the same.

    in reply to: load_ecp_title_into_page_template Error #30190
    Sean
    Participant

    the other errors are probably related to an XML file you would not have in your install, i have sent you full access to the dev site. i keep it protected to prevent confusion for visitors and the client.

    in reply to: load_ecp_title_into_page_template Error #30123
    Sean
    Participant

    as i said initially, “i do not get the error in the Twenty Twelve theme so i assume something is missing from my theme” would you like me to send you the theme?

    in reply to: load_ecp_title_into_page_template Error #30007
    Sean
    Participant

    looking back at a few revisions it seems that 2.0.3

    public static function load_ecp_title_into_page_template($title) {

    global $post;
    if (is_single() && !tribe_is_showing_all()) {
    return $title;
    } else {
    return tribe_get_events_title();
    }
    }

    and at some point it changed to

    public static function load_ecp_title_into_page_template($title, $id) {
    global $post;
    return ( !is_single() && (isset($post->ID) && $post->ID == $id) ) ? tribe_get_events_title() : $title;
    }

    the earlier revision of the function seems to work with out the error

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