• Resolved smwebdesigns

    (@smwebdesigns)


    HI,

    How do I make the email address unclickable. I still want to display the email address but don’t want it to be clickable.

    Many thanks

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Greg Winiarski

    (@gwin)

    Hi,
    the email and phone number are converted to links using JavaScript, so right now the only way to do that is to open file wpadverts/assests/js/adverts-frontend.js and change the line

    
    email = $("<a></a>").attr("href", "mailto:"+response.email).text(response.email);
    

    to

    
    email = response.email;
    

    That being said i do not recommend doing this change as it will be overwritten on each WPAdverts update with the default adverts-frontend.js version.

    Thread Starter smwebdesigns

    (@smwebdesigns)

    Hi Greg,

    That’s great, thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Remove email link’ is closed to new replies.