Home Forums WoodMart support forum External links

External links

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #73108

    khalid
    Participant

    Hello,

    I need to add to some gallery images and external links to other websites, and i need to set “no follow” for those links, how can i add this the Images in the image gallery or the banners?

    #73111

    Artem Temos
    Keymaster

    Hi,

    You can do this with our Images gallery element and use custom links as on click action

    But there is no nofollow attribute for them. You will need to modify the file woodmart/inc/shortcodes/images-gallery.php and replace this line

    <a href="<?php echo esc_url( $link ); ?>" data-index="<?php echo esc_attr( $i ); ?>" data-width="<?php echo esc_attr( $width ); ?>" data-height="<?php echo esc_attr( $height ); ?>" <?php if( $target_blank ): ?>target="_blank"<?php endif; ?> <?php if( $caption ): ?>title="<?php echo esc_attr( $title ); ?>"<?php endif; ?>>

    with this one

    <a href="<?php echo esc_url( $link ); ?>" data-index="<?php echo esc_attr( $i ); ?>" data-width="<?php echo esc_attr( $width ); ?>" data-height="<?php echo esc_attr( $height ); ?>" <?php if( $target_blank ): ?>target="_blank"<?php endif; ?> <?php if( $caption ): ?>title="<?php echo esc_attr( $title ); ?>"<?php endif; ?> rel="nofollow">

    Regards

    #73114

    khalid
    Participant

    shall i change this for each image or each post, or it is one time change?

    #73117

    khalid
    Participant

    can you tell me as well the lines for the following:

    Banner carousel
    promo banners
    single image
    Instagram

    #73166

    Artem Temos
    Keymaster

    Here is a file for all these elements. You just need to find all <a> tags there and add rel="nofollow" attribute to them like this

    <a href="..." rel="nofollow".....

    Files:

    wp-content/themes/woodmart/inc/shortcodes/promo-banner.php
    wp-content/themes/woodmart/inc/shortcodes/instagram.php
    wp-content/plugins/js_composer/include/templates/shortcodes/vc_single_image.php

    Regards

Viewing 5 posts - 1 through 5 (of 5 total)