Viewing 25 posts - 1 through 25 (of 25 total)
  • Author
    Posts
  • #1059703

    Hello Team,

    i would like to add a individual link to the tap-pictures on tap pages (Reiter Bilder in Registerkarte, Layout Elements).

    Is it possible – do you have a custom css?

    Maybe you can help me, thanks in advance!

    Kind regards.

    #1059716

    Hey marketingnr1,

    I’m not quite sure what you mean by Tap-Pages and Tap-Pictures. Can you provide link to the pages or elements?

    Best regards,
    Jordan Shannon

    #1059771

    Here you can see, the box is in a tap (Reiter) and i want to make the box clickable by a link.

    View post on imgur.com

    #1060021

    Hi,

    Please provide a link to the page in question so we can inspect this further.

    Best regards,
    Jordan Shannon

    #1060091
    This reply has been marked as private.
    #1060424

    push

    #1060565

    I basically want to make the pictures or icons that I inserted into the horizontal tabs clickable aka link them / refer them to some URL.

    thanks in advance!

    #1061205

    Hi,

    Why not you add a link to the image element? Where is the problem on that?

    Best regards,
    Basilis

    #1061531

    Hello Basilis,

    how can i add a link to the image element? Please give me a discription.
    On Tab-Enfold (Reitereinstellungen) is no option to add a link to the image.

    Kind regards

    #1062367

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
      ( do be sure that we have enough time to debug ).
    5. Click ” Submit “.
    6. You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.

    When your issue is fixed, you can always remove the plugin!
    If you prefer to not use the plugin, you can manually create a admin user and post the login credentials in the “private data” field.

    Best regards,
    Basilis

    #1062614

    Thanks in advance!

    • This reply was modified 5 years, 9 months ago by Victoria.
    #1063553

    Hello Team,

    maybe someone could help us?

    Kind regards!

    #1064980

    Hi marketingnr1,

    Here is a thread for you to consider
    https://kriesi.at/support/topic/link-to-tab-in-tab-section/

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1065458

    Hi Victoria,

    i am looking for a easy solution. Is it possible to add a custom css code like:

    #av-section-tab-title a[href="https://www.test.com"]
    {display:none !important;}

    The problem is, there are two tabs so i have to add to seperate links

    #av-tab-section 1-1
    #av-tab-section 1-2

    i tried it but it does not work, may you can help me.
    Thanks in advance!

    • This reply was modified 5 years, 9 months ago by marketingnr1.
    #1066219

    Hi,
    Is this a duplicate request for this one?
    From you image: https://imgur.com/a/eZ8KCLI
    it looks like you want the image in the tab to be a link, but it already a link for the tabs?
    Unless you want to link “to” the tabs from elsewhere?

    Best regards,
    Mike

    #1066477

    Hi Mike,

    yes, every tab image must open another website by clicking. So every tab image must have a different link.

    Kind regards!

    #1066758

    Hi,
    Ok, but what about navigating to the different tabs to see the tab content? Please see in this image that the images are a part of the tab links.
    2019-02-13-210355

    Best regards,
    Mike

    #1066927

    Hi Mike,

    every single tab image should open a url to another browser tab, we dont want to use the tab content.

    Kind regards!

    #1067304

    Hi,
    The tab element doesn’t have a way to add links to the images, and css can’t add links, you have to use some javascript. How about trying the Partner Logo element, it allows links to be added to the images:
    2019-02-14-234209
    and you can create a single row for the element:
    2019-02-14-234721
    if you use white or transparent backgrounds it won’t look like boxes:
    2019-02-14-235300

    Best regards,
    Mike

    #1067374

    Hi Mike,

    first of all thanks for your help!
    We don´t want to use the partner logo, based on the design we must use the tab-section .
    The problem is on partner logos there is a grey background and you cant cyle the images, we need a custom background and every image must be shown up aktive by clicking it. -> so in my opinion this is more custom css to change than adding the links to the javascript file.

    So how we can add there links on javascript?

    Kind regards!

    • This reply was modified 5 years, 9 months ago by marketingnr1.
    #1067463

    Hi,
    Ok, I created a function for you that adds a link to a tab section and then opens in a new tab, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function add_link_to_tab_section(){
      ?>
      <script>
    (function($){
    $(window).load(function(){
      $('.av-tab-section-tab-title-container a[data-av-tab-section-title="1"]').each(function() {
      $(this).attr('href','https://google.com');
      $(this).on('click',function(){
     window.open(this.href);
        return false;
      });
      });
    $('.av-tab-section-tab-title-container a[data-av-tab-section-title="2"]').each(function() {
      $(this).attr('href','https://bing.com');
      $(this).on('click',function(){
     window.open(this.href);
        return false;
      });
      });
    });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_link_to_tab_section');

    in this example I have added two links, you can add more if you like. To understand how it works, notice that each tab gets this attribute: [data-av-tab-section-title=”1″] from left to right, each is a new number, 1,2,3,ect.
    so the script targets the tab by this number, and then adds the link on the next line. You will see above “google.com” & “bing.com” adjust these to suit.
    2019-02-15-075336

    Best regards,
    Mike

    #1068027

    Hi Mike,

    thank you sooo much! This is exactly what we want.

    Thanks for helping us with the php code, we really appreciate it.

    Kind regards!

    #1068044

    Hi,
    Happy to help, I assume we can close this now, but I like to ask. Shall we close this then?

    Best regards,
    Mike

    #1068265

    Hi Mike,

    yes you can close – its solved.

    Kind regards and thanks again!

    #1068309

    Hi,

    Best regards,
    Victoria

Viewing 25 posts - 1 through 25 (of 25 total)
  • The topic ‘tap page link on picture’ is closed to new replies.