<?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 Topic: Need help with form-to-post: author&#039;s bio, custom field, conditional description</title>
		<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-form-to-post-authors-bio-custom-field-conditional-description</link>
		<description>Gravity Support Forums Topic: Need help with form-to-post: author&#039;s bio, custom field, conditional description</description>
		<language>en-US</language>
		<pubDate>Sun, 19 Apr 2026 23:49:13 +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/topic/need-help-with-form-to-post-authors-bio-custom-field-conditional-description" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Need help with form-to-post: author&#039;s bio, custom field, conditional description"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-form-to-post-authors-bio-custom-field-conditional-description#post-73518</link>
			<pubDate>Sat, 01 Sep 2012 00:54:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">73518@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;A1.  It looks like your theme uses the body_class() WordPress function. That means when the user is logged in, this class will be added to the body tag of the page:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[html]
logged-in&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;What you could do is, in your post, wrap the content you want to show to non-logged in members in a &#38;lt;div class=&#34;clutter&#34;&#38;gt; &#38;lt;/div&#38;gt; and then add this to your stylesheet:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;[css]
body.logged-in div.clutter {
    display:none;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;That will hide the redundant bit of content from logged in users.  User who have not logged in will not have that class in the body tag, so the CSS will not be applied and the text will be shown to them.  The div will have no effect for users who are not logged in.&#60;/p&#62;
&#60;p&#62;A2.   Please post the complete notification you are using to pastebin.com or pastie.org and paste the link to it here.  Code posted here does not retain its formatting. We can help you with the exact syntax to make it a hyperlink if we can see how you're doing it now.&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>MarciaH on "Need help with form-to-post: author&#039;s bio, custom field, conditional description"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/need-help-with-form-to-post-authors-bio-custom-field-conditional-description#post-72922</link>
			<pubDate>Tue, 28 Aug 2012 11:41:26 +0000</pubDate>
			<dc:creator>MarciaH</dc:creator>
			<guid isPermaLink="false">72922@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;I'm building a submission form to elicit literary contributions for a crowdsourced memoir project. They will end up as posts.  I'm been struggling a lot to get this to work.  I'm almost there, but need a bit of input.&#60;br /&#62;
The Form can be found here: &#60;a href=&#34;http://writerscelebratewriters.com/submit-a-memoir/&#34; rel=&#34;nofollow&#34;&#62;http://writerscelebratewriters.com/submit-a-memoir/&#60;/a&#62;  You can use these to login if you like: username: littleone / password: blahblahblah&#60;/p&#62;
&#60;p&#62;Question 1) The Form has some into verbiage that is entered in WP Visual Editor through the Page.  The problem is that although it sets the visitor up decently to understand what's required of them, it becomes unnecessary and is clutter once the user has logged in when i really want them to see ONLY the form itself.   They are also eligible to submit more than once, so every time they will see all that clutter.  I really want that message to be conditional on whether they are new or logged in or returning.  I realize that the message probably needs to be entered as the Description form field, but I have no idea how to make it appear and disappear as needed.&#60;/p&#62;
&#60;p&#62;Question 2) I decided to have the form visible only to logged-in users. I have been searching for a viable login/registration plugin and the only ones I can find that actually work, generate insufficient information to build a decent Author's Bio area appended to the post. So that has moved me to include the Author's Bio, their publications and their website URL in custom fields (except for the URL which it an Advanced field).  I'm &#34;calling&#34; these elements through the Content Template.  &#60;/p&#62;
&#60;p&#62;Everything seems to work OK except that I can't seem to get the website URL to be a hyperlink. I have tried wrapping the merge tag in multiple ways with html, and GF seems to be stripping out my html (not the case with my other html) or I'm just wrapping it wrong.&#60;/p&#62;
&#60;p&#62;Here's what I currently have in the Content Template field of my Body Content form field (without the url html since that keeps disappearing or being wrong:&#60;br /&#62;
 ( {Your Memoir Content:13}&#60;br /&#62;
&#60;hr /&#62;&#38;lt;/hr&#38;gt;&#60;br /&#62;
&#38;lt;h3&#38;gt;Author's Bio:&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;{Author's Bio:17}&#60;br /&#62;
&#38;lt;h3&#38;gt;Selected Publications:&#38;lt;/h3&#38;gt;&#60;br /&#62;
&#38;lt;p&#38;gt;{Selected Publications::18}&#60;br /&#62;
&#38;lt;h3&#38;gt;Website:&#38;lt;/h3&#38;gt;)&#60;br /&#62;
&#38;lt;p&#38;gt;{Website:20}&#60;/p&#62;
&#60;p&#62;I've already wasted a lot of precious time on this detail, and I'm sure there is a very simple solution that I just can't seem to hit upon.&#60;/p&#62;
&#60;p&#62;Thank you in advance.
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
