<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Appnitro Software Forums Topic: Can you add Hyperlink(s) to a form's Logo?</title>
<link>http://www.appnitro.com/forums/</link>
<description>Appnitro Software Forums Topic: Can you add Hyperlink(s) to a form's Logo?</description>
<language>en</language>
<pubDate>Tue, 07 Sep 2010 21:35:50 +0000</pubDate>

<item>
<title>tania on "Can you add Hyperlink(s) to a form's Logo?"</title>
<link>http://www.appnitro.com/forums/topic/can-you-add-hyperlinks-to-a-forms-logo#post-6541</link>
<pubDate>Fri, 10 Jul 2009 23:15:57 +0000</pubDate>
<dc:creator>tania</dc:creator>
<guid isPermaLink="false">6541@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;I just realized I posted this publically in a forum, are you able to delete the previous post and reply privately?
&#60;/p&#62;</description>
</item>
<item>
<title>tania on "Can you add Hyperlink(s) to a form's Logo?"</title>
<link>http://www.appnitro.com/forums/topic/can-you-add-hyperlinks-to-a-forms-logo#post-6540</link>
<pubDate>Fri, 10 Jul 2009 23:14:30 +0000</pubDate>
<dc:creator>tania</dc:creator>
<guid isPermaLink="false">6540@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Redityo - thank you!  We are soooo close here.  I am trying to do several hyperlinks on one logo.  I was using the following code in a section break to add the different hyperlinks:&#60;/p&#62;
&#60;p&#62;&#38;lt;img src=http://www.example.com/LOGO/my_Logo.gif usemap=&#34;#logo&#34; border=&#34;0&#34;&#38;gt;&#60;br /&#62;
&#38;lt;map name=&#34;logo&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;&#38;lt;/map&#38;gt;&#60;/p&#62;
&#60;p&#62;Can something like this be added??  If not, can you hide the Form Title in the form?  A quick response would be great as I am trying to get this out today! :)&#60;/p&#62;
&#60;p&#62;Thanks so much!
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Can you add Hyperlink(s) to a form's Logo?"</title>
<link>http://www.appnitro.com/forums/topic/can-you-add-hyperlinks-to-a-forms-logo#post-6539</link>
<pubDate>Fri, 10 Jul 2009 18:08:25 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">6539@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;It's need to use a different approach then, you can ignore my previous code. To do so edit &#34;view-functions.php&#34; and go around line 1814 ~ 1816, you will see these code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if($embed){
	$embed_class = &#38;#39;class=&#38;quot;embed&#38;quot;&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;put these code exactly bellow that line &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;if ($form_id == 1) {
	$form_link = &#38;#39;&#38;lt;a  href=&#38;quot;http://www.domain1.com&#38;quot;&#38;gt;&#38;#39;.$form-&#38;gt;name.&#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
}
elseif ($form_id == 2) {
	$form_link = &#38;#39;&#38;lt;a  href=&#38;quot;http://www.domain2.com&#38;quot;&#38;gt;&#38;#39;.$form-&#38;gt;name.&#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
}
else {
	$form_link = &#38;#39;&#38;lt;a&#38;gt;&#38;#39;.$form-&#38;gt;name.&#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Then go to line 1846, you'll see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1&#38;gt;&#38;lt;a&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;replace with &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1&#38;gt;{$form_link}&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Don't forget to change the form id with yours
&#60;/p&#62;</description>
</item>
<item>
<title>tania on "Can you add Hyperlink(s) to a form's Logo?"</title>
<link>http://www.appnitro.com/forums/topic/can-you-add-hyperlinks-to-a-forms-logo#post-6532</link>
<pubDate>Fri, 10 Jul 2009 07:38:28 +0000</pubDate>
<dc:creator>tania</dc:creator>
<guid isPermaLink="false">6532@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Thanks.  I am putting more than 1 hyperlink on to one logo so it is too long to put in the &#34;form title&#34;.  I actually did not want to make this a global change, but specific to each form.  How would I do that?
&#60;/p&#62;</description>
</item>
<item>
<title>redityo on "Can you add Hyperlink(s) to a form's Logo?"</title>
<link>http://www.appnitro.com/forums/topic/can-you-add-hyperlinks-to-a-forms-logo#post-6522</link>
<pubDate>Thu, 09 Jul 2009 10:45:00 +0000</pubDate>
<dc:creator>redityo</dc:creator>
<guid isPermaLink="false">6522@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;To change your form logo as hyperlink, you need to edit &#34;includes/view-functions.php&#34; file, go to line 1838, you will see this code :&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1&#38;gt;&#38;lt;a&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;For example your hyperlink url is &#34;http://www.mydomain.com&#34; then change to &#60;/p&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;h1&#38;gt;&#38;lt;a  href=&#38;quot;http://www.mydomain.com&#38;quot;&#38;gt;{$form-&#38;gt;name}&#38;lt;/a&#38;gt;&#38;lt;/h1&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;otherwise you can add hyperlink tag in &#34;form title&#34; text box when you edit the form. I think it's more easier :)
&#60;/p&#62;</description>
</item>
<item>
<title>tania on "Can you add Hyperlink(s) to a form's Logo?"</title>
<link>http://www.appnitro.com/forums/topic/can-you-add-hyperlinks-to-a-forms-logo#post-6517</link>
<pubDate>Thu, 09 Jul 2009 04:15:07 +0000</pubDate>
<dc:creator>tania</dc:creator>
<guid isPermaLink="false">6517@http://www.appnitro.com/forums/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I need to add some hyperlinks to a logo on a form.  I see the CSS File where to change the logo.  Is there a way to add a hyperlink?&#60;/p&#62;
&#60;p&#62;If this cannot be done in the CSS file, what is a good workaround?  I could add a section break at the beginning of the form and write the HTML code there for the logo, but I would like the form's title to come after the logo.&#60;/p&#62;
&#60;p&#62;Thank you in advance for your help!
&#60;/p&#62;</description>
</item>

</channel>
</rss>
