Hi, where can I make the change to get the twitter widget header and links to open in a window/tab? Thanks!
Twitter widget open in new window?
2 posts from 2 voices-
Posted 1 year ago #
-
Hello Anna,
You can go to framework > php > class-framework-widgets.php and look for
if ( !empty( $title ) ) { echo $before_title . "<a href='http://twitter.com/$username/' title='$title' >".$title ."</a>". $after_title; };Add the target tag to the a href. You can replace it with this.
if ( !empty( $title ) ) { echo $before_title . "<a href='http://twitter.com/$username/' title='$title' target='_blank'>".$title ."</a>". $after_title; };Hope this helps.
Cheers,
IsmaelPosted 1 year ago #
Reply
You must log in to post.














