• Resolved atongmu453

    (@atongmu453)


    Hi all, do you know how I can set up the flip boxes, if someone clicks on the link the linked page should be opened in the same tab and not in a new one.

    thanks for help

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi @atongmu453,

    In order to open linked page in same tab, please add given below code in your active theme’s functions.php file.

    function flipboxcustom_enqueue_script() {
    	wp_add_inline_script( 'flip-min-js', '
    	  
    	jQuery(document).ready(function($){
    		$(".cfb_wrapper a").removeAttr("target");    
    	});
    	  
    	' );
    }
    add_action( 'wp_enqueue_scripts', 'flipboxcustom_enqueue_script' );

    Thanks

    Thread Starter atongmu453

    (@atongmu453)

    works pretty well, thank you very much for the fast support

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

The topic ‘open link in the same tab’ is closed to new replies.