Footer Popup Contact Form Shortcode

edited December 2015 in Shortcodes
Is there any possibility to get the shortcode which is used for footer mailbox? I want to have this footer mail box contact form inside the post. This is an awesome feature, no overlap over the post as a popup.  While digging into the footer template, I found following code for that field:

<?php if( mfn_opts_get('popup-contact-form') ): ?>
<div id="popup_contact">
<a class="button button_js" href="#"><i class="<?php mfn_opts_show( 'popup-contact-form-icon', 'icon-mail-line' ); ?>"></i></a>
<div class="popup_contact_wrapper">
<?php echo do_shortcode( mfn_opts_get('popup-contact-form') ); ?>
<span class="arrow"></span>
</div>
</div>
<?php endif; ?>

I need the just shortcode for this which I can use in the post as a contact button. Is it possible?

Comments

Sign In or Register to comment.