• Resolved funkdified

    (@funkdified)


    I needed to make some changes to my server configuration, and now I need to update the form action for the mailchimp plugin. It needs to direct to root/blog rather than root. Can you please tell me where to change this setting. I tried deleting mailchimp and reinstalling but this did not fix my issue.

    https://ww.wp.xz.cn/plugins/mailchimp-for-wp/

Viewing 1 replies (of 1 total)
  • Plugin Author Danny van Kooten

    (@dvankooten)

    Hi there,

    Normally you shouldn’t have to change the form action but should you really have to then you can use the mc4wp_form_action filter.

    function myprefix_form_action( $url ) {
    	return 'http://myformactionurl.com';
    }
    
    add_filter( 'mc4wp_form_action', 'myprefix_form_action' );

    Hope that helps!

Viewing 1 replies (of 1 total)

The topic ‘Change form action’ is closed to new replies.