Okay
  Public Ticket #1255812
Make Column Link in Column Settings open in new tab
Closed

Comments

  •  2
    Bren Burrell started the conversation

    Hello

    There is no field in the Column Settings form to set a Column Link to open in a new tab.

    I've tried using something like the Button shortcode parameter as follows but that doesn't work:

    open_new_tab="true" 

    How would I add this functionality?

    Thanks

    Bren

  •  9,013
    Tahir replied

    Hey Again,

    You can use a much simple JS code snippet instead.

    Please have a look at this Article :

    Make Column Link Open Lightbox

    and use this code instead :

    <script type="text/javascript">
    jQuery( document ).ready(function() {
    jQuery(".lightbox-column a.column-link").attr("target","_blank");
    });
    </script>
    

    Be.st


    ThemeNectar Support Team