<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>Gravity Support Forums User Favorites: deadhippo</title>
		<link><a href='https://legacy.forums.gravityhelp.com/profile/deadhippo'>deadhippo</a></link>
		<description>Gravity Support Forums User Favorites: deadhippo</description>
		<language>en-US</language>
		<pubDate>Wed, 22 Apr 2026 22:44:42 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/profile/" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Control over ALT and TITLE tags for images in posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/control-over-alt-and-title-tags-for-images-in-posts#post-40350</link>
			<pubDate>Tue, 08 Nov 2011 01:24:00 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">40350@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The image merge tag, in your content template, will look like this&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php
&#38;lt;a href=&#38;quot;{My Post Image:1:full:URL}&#38;quot;&#38;gt;&#38;lt;img src=&#38;quot;{My Post Image:1:medium:url}&#38;quot; /&#38;gt;&#38;lt;/a&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That assumes form field 1 of you form is called &#34;My Post Image&#34; and you want to link to link the medium sized image to the full size image.  If you just want to use your own alt and title tags, it might look more like this:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[php]
&#38;lt;img src=&#38;quot;{My Post Image:1:medium:url}&#38;quot; alt=&#38;quot;merge tag for what you want as alt&#38;quot; title=&#38;quot;merge tag for what you want as title&#38;quot; /&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Use the drop down to add the form fields to your content template.  The only change you will need to make is add the &#34;:url&#34; inside the merge tag.&#60;/p&#62;
&#60;p&#62;Here's another explanation:&#60;br /&#62;
&#60;a href=&#34;http://www.gravityhelp.com/forums/topic/clickable-images-in-posts#post-37307&#34; rel=&#34;nofollow&#34;&#62;http://www.gravityhelp.com/forums/topic/clickable-images-in-posts#post-37307&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deadhippo on "Control over ALT and TITLE tags for images in posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/control-over-alt-and-title-tags-for-images-in-posts#post-40207</link>
			<pubDate>Sun, 06 Nov 2011 05:58:35 +0000</pubDate>
			<dc:creator>deadhippo</dc:creator>
			<guid isPermaLink="false">40207@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I know this is an old post but I didn't understand it and I put it away to check on it later but unfortunately I don't quite understand what I need to do to get the image url. Could you explain it a little more clearly. Sorry.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Control over ALT and TITLE tags for images in posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/control-over-alt-and-title-tags-for-images-in-posts#post-15337</link>
			<pubDate>Mon, 03 Jan 2011 13:34:58 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">15337@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It is possible to get the image URL itself, without the HTML when using the form field variables. You doing this by adding :src at the end of the image form field variable.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deadhippo on "Control over ALT and TITLE tags for images in posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/control-over-alt-and-title-tags-for-images-in-posts#post-15325</link>
			<pubDate>Mon, 03 Jan 2011 02:36:53 +0000</pubDate>
			<dc:creator>deadhippo</dc:creator>
			<guid isPermaLink="false">15325@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;An easier option may be to allow the user to insert the image url without the HTML.&#60;/p&#62;
&#60;p&#62;eg. &#60;code&#62;hxxp://www.site.com/image.png&#60;/code&#62; instead of &#60;code&#62;&#38;lt;img src=&#38;quot;hxxp://www.site.com/image.png&#38;quot; /&#38;gt;&#60;/code&#62; and then we can easily add our own alt and title tags.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Carl Hancock on "Control over ALT and TITLE tags for images in posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/control-over-alt-and-title-tags-for-images-in-posts#post-14734</link>
			<pubDate>Sun, 19 Dec 2010 22:22:41 +0000</pubDate>
			<dc:creator>Carl Hancock</dc:creator>
			<guid isPermaLink="false">14734@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;It's not a built in feature to pre-populate the image meta fields with the value of other fields, it's a good idea so we can look into it. Practically anything is possible using hooks, but it depends on what your skill level is with WordPress development and PHP.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>deadhippo on "Control over ALT and TITLE tags for images in posts"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/control-over-alt-and-title-tags-for-images-in-posts#post-14722</link>
			<pubDate>Sun, 19 Dec 2010 19:39:30 +0000</pubDate>
			<dc:creator>deadhippo</dc:creator>
			<guid isPermaLink="false">14722@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I don't know if this feature already exists but I couldn't find it. I am letting users create posts through Gravity and they need to upload an image. They have quite a few fields to fill in already so I don't want to ask them to fill in alt and title tags as well but I do want my images to have them because of the SEO benefits. I wanted to be able to use the other data provided by the user to automatically generate the tags. For example, some standard text combined with the post title. Is this possible?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
