New Landing How can we help? Themeforest Theme Support Dante Open tooltip link in new window

Viewing 4 posts - 1 through 4 (of 4 total)
  • Posted in: Dante
  • #41103
    luminosity
    Member
    Post count: 20

    Last request for the moment!

    I need to open a tooltipped link in a new window and haven’t found a way to do it.

    I was looking in sf-shortcodes/interface.php and was wondering if I can include a “target=”_blank” in the coding here somewhere:

    <div class=”option”>
    <label for=”tooltip-link”><?php _e(‘Link’, ‘swift-framework-admin’); ?></label>
    <input id=”tooltip-link” name=”tooltip-link” type=”text” value=””/>
    <p class=”info”>Enter the link that the tooltip text links to.</p>
    </div>

    Any thoughts?

    Thanks as always.

    #41331
    Tahir – SUPPORT
    Member
    Post count: 1212

    Hi,
    Yes you could try that for now if you need it urgently. I am sure Ed can Add this option in the coming updates.

    Thanks
    Tahir

    #41423
    luminosity
    Member
    Post count: 20

    OK – solved it:

    For anyone that needs to do this:

    Go to shortcodes.php

    and replace the Tooltip shortcode with this:

    /* TOOLTIP SHORTCODE
    	================================================= */
    	
    	function sf_tooltip($atts, $content = null) {
    		extract(shortcode_atts(array(
    			"title" => '',
    			"link" => '#',
    			"direction" => 'top'
    		), $atts));
    				
    		$tooltip_output = '<a href="'.$link.'" target=\"_blank\" rel="tooltip" data-original-title="'.$title.'" data-placement="'.$direction.'">'.do_shortcode($content).'</a>';
    
    		return $tooltip_output;
    	}
    	
    	add_shortcode('sf_tooltip', 'sf_tooltip');
    	
    	
    #41467
    Swift Ideas – Ed
    Keymaster
    Post count: 15264

    Thanks for posting your solution for others 🙂

    – Ed

Viewing 4 posts - 1 through 4 (of 4 total)

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register