[TH] Custom Fields [Deleted]

When adding a reply to the post both with and without using a custom field, the original thread fields are deleted from the first post and the title in the forum list. I'm assuming this isn't expected, or have I over looked a setting to prevent this?

EDIT: My bad, only if there is a custom post field and a custom thread field. The custom post field removes the content from the thread fields.
 
I successfully upgraded version c, but can not see the contents of the topic
"An unexpected error occurred. Please try again later."
 
ok I just installed version c... which looks to have installed correctly (via the XF 1.1.5 web interface updater)

The custom fields we had have now returned but above the header image of the forum it displays this:
Screen Shot 2013-07-09 at 10.13.57.webp
 
I successfully upgraded version c, but can not see the contents of the topic
"An unexpected error occurred. Please try again later."
XenForo 1.1? There seems to be a problem with the installer not always completing. Please try upgrading the XML file again until the error clears. I'm looking into this.
 
Bit of inconsistency from usual functionality

within edit field:
Edit Field  Url .webp

Top one usually gives a url. It doesn't. Have to use the bottom one.
 
Hey @Waindigo are you looking into this one?

Many thanks,

Phil
Sorry, I thought this was the same as another error.

This looks like an error with the code in your forum header template. If you could post your header template code here then I could see if I can work out what is broken.
 
HTML:
<div style="min-height: 100px;">
<div class="sanity-sidebar">
<div style="margin: 10px 10px">
<b><u>Codex Entry Category</b></u><br><br>
<xen:if is="{$customFields.CodexEntryType.Field_Choice}=='ArtifactFinding'">
Discovery or Research
<xen:elseif is="{$customFields.CodexEntryType.Field_Choice}=='JournalStory'"/>
Story of the Occult Story from a Member of the Order
<xen:elseif is="{$customFields.CodexEntryType.Field_Choice}=='TheoryEditorial'"/>
Theory or Discussion of the Unknown
<xen:elseif is="{$customFields.CodexEntryType.Field_Choice}=='Conspiracy'"/>
Paranormal or Conspiracy Theory
<xen:else/>
Strange Phenominon or Occurrence
</xen:if>
</div>
</div>
<div style="position: relative;top: 0;left: 0; " >
 
HTML:
<xen:hook name="header">
<div id="header">
    <xen:include template="logo_block" />
    <xen:include template="navigation" />
    <xen:if is="{$canSearch}"><xen:include template="search_bar" /></xen:if>
</div>
</xen:hook>
 
@Zantetsuken Assuming your field ID is CodexEntryType, then your code should be:
Rich (BB code):
<div style="min-height: 100px;">
<div class="sanity-sidebar">
<div style="margin: 10px 10px">
<b><u>Codex Entry Category</b></u><br><br>
<xen:if is="{$customFields.CodexEntryType.Field_Choice}=='ArtifactFinding'">
Discovery or Research
<xen:elseif is="{$customFields.CodexEntryType.Field_Choice}=='JournalStory'"/>
Story of the Occult Story from a Member of the Order
<xen:elseif is="{$customFields.CodexEntryType.Field_Choice}=='TheoryEditorial'"/>
Theory or Discussion of the Unknown
<xen:elseif is="{$customFields.CodexEntryType.Field_Choice}=='Conspiracy'"/>
Paranormal or Conspiracy Theory
<xen:else/>
Strange Phenominon or Occurrence
</xen:if>
</div>
</div>
<div style="position: relative;top: 0;left: 0; " >
 
Top Bottom