Hi all who have been stuck with this:
I have changed the end of the inquiry-cart-shortcode.php to look like this:
// Add the submit button and end the form.
$string_to_return .=
'<input type="hidden" name="is-form-submitted" value="y" />
<input type="submit" value="Send your inquiry" />
</form>';
// Append the list of items to the string that is being returned.
$string_to_return .= $list_of_items;
return $string_to_return;
} // End rd_ic_cart_shortcode();
This makes the form functional.
But now there is a problem with the email text.
Instead of showing a list of products selected, it shows
“New inquiry from mr.x … textarea content
———————
Products:
Array ( [product1]=>0
)
“
Which is greek to me.
Any idea what can be done to make it understandable to humans? ??