We just pushed some updates to our Umbraco intranet site which is setup using a custom template and using Visual Studio. It seems to have broken Contour. The default "Contact Us" page and "Comments form" display this:
All the asp.net content placeholder are set to runat server and two forms that were manually placed in the master page are visually rendering correctly (even though they are not sending out emails and don't given any error why).
Keep in mind that these forms were working fine before we pushed the updates using Courier. I don't understand where its getting the "Previous" and "Next" buttons from.
Using Umbraco Version: 4.7.1 and
Contour Version: 1.1.10
Yes this is still an issue. The above form is generated after inserting the macro in the Umbraco RTE. The form appears fine in Contour itself (Keep in mind this was working fine prior to pushing an update using Courier).
The manually inserted forms are appearing fine, using the below code:
None of the forms are sending out any emails (used to work as well) even when previewing through contour. I have triple checked the web.config and it has the correct info and there were no modifications made to the forms or the web.config area where the mail server is defined.
Default Contact Us and Comment form not rendering
Hey Guys,
We just pushed some updates to our Umbraco intranet site which is setup using a custom template and using Visual Studio. It seems to have broken Contour. The default "Contact Us" page and "Comments form" display this:
All the asp.net content placeholder are set to runat server and two forms that were manually placed in the master page are visually rendering correctly (even though they are not sending out emails and don't given any error why).
Keep in mind that these forms were working fine before we pushed the updates using Courier. I don't understand where its getting the "Previous" and "Next" buttons from.
Using Umbraco Version: 4.7.1 and Contour Version: 1.1.10
Any help will be appreciated.
Thank You.
Comment author was deleted
Is this still an issue? How are you outputting the form? Do the forms look ok in the Contour section?
Yes this is still an issue. The above form is generated after inserting the macro in the Umbraco RTE. The form appears fine in Contour itself (Keep in mind this was working fine prior to pushing an update using Courier).
The manually inserted forms are appearing fine, using the below code:
None of the forms are sending out any emails (used to work as well) even when previewing through contour. I have triple checked the web.config and it has the correct info and there were no modifications made to the forms or the web.config area where the mail server is defined.
Thank You for your assistance.
Would really appreciate any help with this, still an issue.
Comment author was deleted
And how are you outputting the rte field on your templates?
Its implemented like so in a basic webpage template:
<umbraco:macro runat="server" language="cshtml">
@if (@Model.isContentBox)
{
<div class="content-box">
<div class="content-box-title">@Model.title</div>
@Html.Raw(umbraco.library.RenderMacroContent(Model.bodyText.ToString(), Model.Id))
</div>
}
else
{
<h1>@Model.title</h1>
@Html.Raw(umbraco.library.RenderMacroContent(Model.bodyText.ToString(), Model.Id))
}
</umbraco:Macro>
Still have not been able to get this working.
is working on a reply...