Forum Replies Created

Viewing 1 replies (of 1 total)
  • Thread Starter writerbug44

    (@writerbug44)

    Hi Jeremy!
    Thanks for getting back to me but I actually just figured it out. For some reason, I had

    function add_shortcode() {
    		add_shortcode( 'contact-form',   array( 'Grunion_Contact_Form', 'parse' ) );
    	}

    in grunion-contact-form.php but when I changed it to

    function add_shortcode() {
    		add_shortcode( 'contact-form',   array( 'Grunion_Contact_Form', 'parse' ) );
    		add_shortcode( 'contact-field',  array( 'Grunion_Contact_Form', 'parse' ) );
    	}

    it worked! I’m not the only person working on this code so somebody else may have messed it up before I got to it.
    Anyway, thanks again!

Viewing 1 replies (of 1 total)