Timothy Fisher
Is it possible to add an attribute to a formidable shortcode that would allow you to set the redirect success_url? I've tried the formidable_shortcode_atts hook with no luck: add_action('formidable_shortcode_atts', 'formidable_shortcode_atts', 20, 2); function formidable_shortcode_atts( $atts, $all_atts ) { if ( isset( $all_atts[ 'redirect_url' ] ) ) { // do something to update the success_url in the form. } } I know that there is a frm_redirect_url hook, but I haven't been able to make that work inside of my shortcode.