Magento 2. Force Contact Us page

by Peter D.

Contact Us page contains one CMS Block (left side) and a contact form (right side).

magento 2 custom contact us page

General Contact Information

This is CMS Block with the identifier is contact_aside_cms.

Here is the code for the block content.

<div class="block block-contact-info">
    <div class="block-title">
        <strong role="heading" aria-level="3">General Contact Information</strong>
    </div>
    <div class="block-content">
        <h4>Online Order Queries? <br>Telephone Online Customer Service Team</h4>
        <p>From EU: (094) 90 20 386</p>
        <p>From outside EU: (+353) 94 9020386</p>
        <p>Online customer service desk (Opening Hours): Mon-Fri: 9am to 5pm</p>

        <h4>Email Us</h4>
        <p>Email us at <a href="mailto:{{config path='trans_email/ident_sales/email'}}" class="link-accent">{{config path='trans_email/ident_sales/email'}}</a></p>

        <h4>Feedback On Our Service</h4>
        <p>For any feedback on our service in store or online please email us at <a href="mailto:{{config path='trans_email/ident_general/email'}}" class="link-accent">{{config path='trans_email/ident_general/email'}}</a></p>
    </div>
</div>

Contact Form

Contact form is default Magento 2 functionality.

Recent articles