• Hey there ??

    It seems that the plugin is unable to get the taxonomies for a post because of
    /core/includes/classes/class-wp-webhooks-pro-run.php

    Line 3386
    $tax_terms = wp_get_post_terms( 553, $taxonomies );
    This specifically requests for post_id = 553 but the line should be

    $tax_terms = wp_get_post_terms( $post_id, $taxonomies );

    as $post_id is declared in the function ironikus_trigger_post_create( $post_id, $post, $update ){

    The same is true for line 3349 in the function
    public function ironikus_trigger_post_update( $post_id, $post, $update ){

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Contributor Ironikus

    (@ironikus)

    Hey @yannielsen – thank you a lot for reaching out about this, as well as for mentioning the bug.
    We are aware of it and already prepared a fix that will be launched with our next version. ??
    Thanks again for all your effort!

    Thread Starter Yan Knudtskov

    (@yannielsen)

    Brilliant, thanks! ??

    Plugin Contributor Ironikus

    (@ironikus)

    Hey @yannielsen – it’s our pleasure. We just released the newest version, which also includes the fix for your mentioned problem.
    If you have further questions, please let me know – otherwise, feel free to close the topic ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[BUG] Getting taxonomies’ is closed to new replies.