Jaime updated Steph’s shortcode but it only displayed whether a payment was “Complete” or “Not Complete”. I tweaked it so that you can display any payment information like the original did. add_shortcode(‘frm_payment_status’, ‘frm_payment_status’); function frm_payment_status($atts){ […]
Continue readingMore TagTag: Formidable Pro
User Meta shortcodes for Formidable
Two shortcodes to add user meta information in a Formdidable Pro view. Very basic. Formidable hook – shortcode view user meta add_shortcode( ‘view_meta’, ‘view_meta_shortcode’ ); function view_meta_shortcode( $atts ) { $atts = shortcode_atts( array( ‘user’ […]
Continue readingMore Tag