1.  
  2. /* change this block on line 132 */
  3. {if $url_short neq "http://" && $url_short neq "://"}
  4. <i class="fa fa-globe"></i>
  5. <a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if} {if $story_status neq "published"}rel="nofollow"{/if}>{$url_short}</a>
  6. {/if}
  7.  
  8. To This:
  9.  
  10. {if $url_short neq "http://" && $url_short neq "://"}
  11. <i class="fa fa-globe"></i>
  12. <a href="{$url}" {if $open_in_new_window eq true} target="_blank"{/if} {if $story_status neq "published"}rel="nofollow"{/if}>{$url_short}</a>
  13. {else}
  14. <i class="fa fa-globe"></i>
  15. {$No_URL_Name}
  16. {/if}