Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Dani

    (@devdani)

    Hello wpshushu,

    At the moment, there isn’t an option available to achieve this. I’ve created a ticket to track the request, but I can’t provide a release date or guarantee that it will be implemented.

    If you’d like to make the adjustment directly in the plugin, it’s fairly simple:

    1. Open the file:
      /daext-autolinks-manager/shared/class-daextam-shared.php
    2. Go to line 1032 inside the preg_replace_callback_2() method
    3. Set the $open_new_tab variable to an empty string.

    Note that this adjustment is valid for version 1.10.10:

    // Get the "open_new_tab" value.
    if ( 1 === intval( $this->autolinks_ca[ $autolink_id ]['open_new_tab'], 10 ) ) {
    $open_new_tab = 'target="_blank"';
    } else {
    $open_new_tab = '';
    }
    • This reply was modified 7 months, 2 weeks ago by Dani.
    • This reply was modified 7 months, 2 weeks ago by Dani.
    Thread Starter wpshushu

    (@wpshushu)

    @devdani Possible to provide a HOOK for future updates? Thanks!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘do not output target=”_self”’ is closed to new replies.