How to delete the email us form on contact us page?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 năm cách đây
I want to delete the email us form on the contact us page, how?

Thanks
13 năm cách đây
I think this will work.

In modules\contactus.ascx look for:
 <div class="send-email" runat="server" id="pnlContactUs">

and change to:
 <div class="send-email" runat="server" Visible="false" id="pnlContactUs">
13 năm cách đây
roger wrote:
I think this will work.

In modules\contactus.ascx look for:
 <div class="send-email" runat="server" id="pnlContactUs">

and change to:
 <div class="send-email" runat="server" Visible="false" id="pnlContactUs">



Thanks Roger! It works!
7 năm cách đây
roger wrote:
I think this will work.

In modules\contactus.ascx look for:
 <div class="send-email" runat="server" id="pnlContactUs">

and change to:
 <div class="send-email" runat="server" Visible="false" id="pnlContactUs">


Thank you! Where to find that /modules directory? Where is it located?
7 năm cách đây
zaf wrote:
I think this will work.

In modules\contactus.ascx look for:
 <div class="send-email" runat="server" id="pnlContactUs">

and change to:
 <div class="send-email" runat="server" Visible="false" id="pnlContactUs">


Thank you! Where to find that /modules directory? Where is it located?


That was a very old post.
To remove the contact form in newer versions of nopcommerce, you can just find this class in your stylesheet:
.contact-page .page-body

add this definition:
display:none;

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.