You are viewing limited content. For full access, please sign in.

Question

Question

Theme > Logo - add hyperlink

asked on March 24, 2019

Hello, 

Is it possible to add a hyperlink to the logo you place in the Theme area of Forms?

Any input is greatly appreciated!

Thanks.

0 0

Answer

SELECTED ANSWER
replied on March 25, 2019
$("#form-logo").wrap("<a href='yourLinkHere'>");

Just insert your link your it says 'yourLinkHere'

4 0

Replies

replied on March 24, 2019

Hi Jo Anne,

I don't think its possible to do so.

But as a workaround, I normally place a custom html on the form with all the parameters I need.
Below is the html code I used, replace with your link and image.


<a href="https://www.laserfiche.com/" target="_blank" title="Go to Laserfiche Website"> <img src="https://upload.wikimedia.org/wikipedia/commons/b/bc/Laserfiche_logo.png" alt="Laserfiche Logo" style="width:132px;height:42px;border:0;"></a>

0 0
replied on March 25, 2019

Thank you Mahesh and Rendani for your replies.

 

Rendani,

This way worked! Would you have a script that it would open in a new tab?

 

Thanks!

0 0
replied on March 25, 2019 Show version history

Add target='_blank"

$("#form-logo").wrap("<a href='yourLinkHere' target='_blank'>");

You should also put that inside a document ready event to make sure it never runs the code before the form is finished loading.

$(document).ready(function(){
  $("#form-logo").wrap("<a href='yourLinkHere' target='_blank'>");
});
2 0
replied on March 25, 2019

Thank you!

0 0
replied on March 25, 2019

You're welcome, but you should mark Rendani's post as the answer. Technically I just added some additional functionality to expand on what he posted.

0 0
replied on March 25, 2019

Ah, I did not realize it removed Rendani's "Mark as Answer" that I did earlier.

Newbie here. :)

Thank you!

0 0
replied on March 25, 2019

No worries! It only allows one answer per question/post, but you can still mark other posts as "helpful" with the thumbs up.

1 0
You are not allowed to follow up in this post.

Sign in to reply to this post.