Hi Joan,
Not sure if Tom ever got back to you… or if this is what you’re after, but this worked for me, and might help you or someone else.
Add something like this inside your PHP:
$x = '[form 2 "checkout"]';
echo do_shortcode($x);
Then if you’re using 2.9.2 add this to your function.php file: (Thx josephsong)
// mmforms adaptor for wp 2.9.2
function show_mm_form($atts, $content = null) {
global $mmf;
if ($mmf) {
return $mmf->the_content_filter_callback(array('1' => $atts[0]));
}
}
add_shortcode('form', 'show_mm_form');