I want to call my form from my template, but I do not want to use identifiers (since my form will have different identifiers on different servers). Is there a way to call a form from my name and not its identifier?
EDIT: clarify in my template instead of calling the form, using, for example echo do_shortcode('[mc4wp_form id="7"]');(which will not work on another server, where the same form has a different identifier), I would name it by name, using a command of this type: display_mailchimp_form('android_user_signup');where "android_user_signup" is this is the name of my form. Thus, even if the same form has different identifiers on different servers, if its name is the same, the form will be successfully called.
source
share