• Resolved nando4

    (@nando4)


    Now seeing wpforo thread titles getting AAlinked.
    Narrowed problem down to the change in filter priority.
    Changed this back from 15 to 5 and now works as before.

    WP-auto-affiliate-links.php

    //general function
    add_filter('the_content', 'wpaal_add_affiliate_links', 5);

    Guess it’s conflicting with this priority:

    //Support for wpforo
    //add_filter('wpforo_get_post', 'wpaal_add_affiliate_links', 15);
    if (function_exists('wpaal_add_affiliate_links')) {
        add_filter('wpforo_content_after', 'wpaal_add_affiliate_links', 15);
    }

    Consider a fix for next verion.

    • This topic was modified 3 years, 2 months ago by nando4.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘wpforo AALinks broken in latest version’ is closed to new replies.