Okay
  Public Ticket #670099
Animated Link
Closed

Comments

  • Dejan started the conversation

    The animated link always opens up in the same window, whether or not the target is _blank or _self it always opens in the same window. Is there an easy fix for this?

  •  1,800
    Support replied

    Yes, provide wp admin and username in the rpivate ticket and we will help you out providing a fix. thanks

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Darren replied

    Just wondering if there was a fix for this issue as i\'ve just noticed the same when trying to get an animated link to open in a new window...


    Many thanks!

  •  1,800
    Support replied

    Hello,

    we are going to release an update regarding this

    until then you can find /wp-content/plugins/nerduck-functionality-plugin/include/shortcodes.php and replace function shortcode_animated_link with:


    function shortcode_animated_link($atts, $content = null) {

    $atts = shortcode_atts(array(

    \'link\' => \'\',

    \'target\' => \'_blank\'

    ), $atts );

    if( $atts[\'target\'] == \'_blank\' ){

    return \'<a href=\"\' . $atts[\'link\'] . \'\" target=\"\' . $atts[\'target\'] . \'\" class=\"more\">\' . do_shortcode($content). \'<span class=\"icon\"></span></a>\';

    }

    else{

    return \'<a href=\"\' . $atts[\'link\'] . \'\" target=\"\' . $atts[\'target\'] . \'\" class=\"animation-link more\">\' . do_shortcode($content). \'<span class=\"icon\"></span></a>\';

    }

    }


    thanks

    Thank you.

    Clapat Support

    https://www.clapat.com/

    Review Envato Item Support Policy

  • Darren replied

    Perfect, thank you! :)