Magento – Move Newsletter Subscription form before footer Magento 2

layoutmagento2newsletter

I'm using magento 2, and I'm building a theme with the blank theme parent. What I'm trying to do is to move the subscription form, from the footer, before the footer, so it's not into the footer container. I have tryed several codes like:

<move element="form.subscribe" destination="content" before="page-footer" />
    <move element="form.subscribe" destination="footer" before="content"/>

    <move element="form.subscribe" destination="body" before="footer"/>

into the default_head_blocks.xml

but nothing to do.. any idea?

Best Answer

Please try below code, may this will help you:-

<move element="form.subscribe" destination="footer" before="-"/>