Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #999773

    Hallo,

    ich benutze das Kundenempfehlung-Element für die Vorstellung eigener Mitarbeiter. Der mögliche Link soll aber keine neue Browser-Seite öffnen sondern auf der Seite bleiben (“_self”). Wo muss ich in den Code eingreifen, um dies zu ändern?

    Vielen Dank für Eure Hilfe.

    abaum

    #999854

    try this:

    function change_target_to_self(){
    ?>
    <script>
    (function($){
        $(window).load(function() {
    	$('.avia-testimonial-link').attr('target', '_self'); 
        });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'change_target_to_self');

    and by the way the DOM is ready is not enough on that

    #999855

    Danke! So funktioniert es.

    Viele Grüße abaum

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Kundenempfehlung Link _blank-Attribut ändern’ is closed to new replies.