Hi there,
My footer currently has 3 columns, which I’d like to keep as-is. However I would like to place a Mailchimp signup form at the bottom of every page, which I guess means adding a row to the footer?
Would that be the best way to go about this, & if so, does the code mentioned in this post still hold true?
Thanks,
Jason
I should add, I’d like the form elements to be horizontal, not vertical as the Mailchimp Signup element (under Content Elements) displays them, & have found this resource which looks to me like I need to use a plugin to achieve this (I note all form <p> elements have a . form_fullwidth class when inspecting).
Is that correct?
I also think (on that link above) that this would be exactly what I’m after, but I don’t completely understand those instructions.
“Copy the shortcode and replace it with the shortcode on both the line that has “return $content” in the below code.”
Can you expand upon/clarify this a little for me please?
Many thanks,
Jason
Hey Jason,
That should work well, there is also a good solution to add a widget area after the footer here Please read down a little bit until you get to this code:
add_action( 'avia_after_footer_columns', 'enfold_under_footer_widget_area' );
function enfold_under_footer_widget_area() {
dynamic_sidebar( 'after-footer' );
}
Best regards,
Mike