dohgraphics:
Hi,
How can I put “blank target” in a short code button link? I tried a lot of possibilities and none has worked…
Hi, please open file functions/theme/theme-shortcodes.php and find this line:
$output = '<a class="ux-btn ' .$color.'" href="'.$link.'">'. $content .'</a>';
update it to:
$output = '<a class="ux-btn ' .$color.'" href="'.$link.'" target="_blank">'. $content .'</a>';
Best