Tagged: ,

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #62797
    Anonymous
    Inactive

    Hello!

    I can not change the CSV export anymore. Did you change the hook names? All the code examples in your documentation are not working anymore.

    e.g:

    function my_eme_csv_header($event) {
        $my_line=array();
        
        $my_line[]=$event['event_name'];
    
        return $my_line;
    }
    add_filter('eme_csv_header_filter','my_eme_csv_header');

    In functions.php does not do anything anymore

    #62798
    Franky
    Keymaster

    @STIWA_KM: I’ve split this question into a new thread, please create a new post for questions unrelated to the initial question (see the forum post guidelines).
    Next to that: the filter is still present and working as expected, but weirdly I’m having the same issue here. The code is still there, but it seems something is not working as expected … I’m trying to debug this

    #62799
    Franky
    Keymaster

    Ok, it problem seems this has been *in* since 4 months. This is the changeset that is the problem:
    https://plugins.trac.wordpress.org/changeset/2483872/

    In fact I hook “earlier” in wp, so as to avoid theme issues with empty lines in the beginning (and it is more efficient) causing issues with the captcha (amongst others).
    I now split this into 2 separate actions, this is the changeset:

    https://plugins.trac.wordpress.org/changeset/2557129/

    You can just download the complete eme_actions.php file and replace the existing one.

    #62800
    Anonymous
    Inactive

    Thank you, it works! But now I have the problem, that my custom fields are not showing up in the CSV

    #62801
    Franky
    Keymaster

    Confirmed, this is a bug (typo) added in the latest release (while trying to avoid non-existing fields). This fixes this:
    https://plugins.trac.wordpress.org/changeset/2557610/

    #62802
    Anonymous
    Inactive

    Now everything works. Thank you! Your support is outstandig! Never seen anything like it! Keept it up!

Viewing 6 posts - 1 through 6 (of 6 total)
  • The forum ‘Bug fixed or feature request implemented’ is closed to new topics and replies.
Scroll to Top