mehransaedi
Forum Replies Created
-
Forum: Plugins
In reply to: [Dynamics 365 Integration] Some codes are shown on the page in wordpressThank you very much, the problem has been solved.
Forum: Plugins
In reply to: [Dynamics 365 Integration] Some codes are shown on the page in wordpressOk, Thanks.
How to use Custom HTML form that works with CRM what code should i use?
For example this is html form what changes should i do to this form ?<form action=”/action_page.php”>
<label for=”fname”>First name:</label><br>
<input type=”text” id=”fname” name=”fname” value=”John”><br>
<label for=”lname”>Last name:</label><br>
<input type=”text” id=”lname” name=”lname” value=”Doe”><br><br>
<input type=”submit” value=”Submit”>
</form>May you give me a example please?
Forum: Plugins
In reply to: [Dynamics 365 Integration] Some codes are shown on the page in wordpressim using On-premise version of CRM, i want to use custom form not twig shortcode,
with twig shortcode i dont have problem with form, the problem is when i use custom form,
checked many times my quotes are straight double quotes not curly one after update the page they convert to curly ones.Forum: Plugins
In reply to: [Dynamics 365 Integration] Some codes are shown on the page in wordpresswish i could post picture here.
first line of code and the last line of code are shown in the page in the wordpress.
actually the quotes are straight double quotes, i copied the code from the page itself thats why the quotes are NOT straight double quotes. So I’m sure they are correct.
- This reply was modified 3 years, 1 month ago by mehransaedi.
Forum: Plugins
In reply to: [Dynamics 365 Integration] Some codes are shown on the page in wordpressHi, Thanks for your replay.
still I’m not using page builder its wordpress itself, and this is my code.
{% form entity=”lead” mode=”create” required=[“lastname”, “emailaddress1”, “description”] %}
<form method=”POST”>
<input name=”firstname” required placeholder=”First Name”>
<input name=”lastname” required placeholder=”Last Name”>
<input name=”mobilephone” type=”tel” placeholder=”Phone Number”><textarea name=”description” rows=”4″ placeholder=”Share Your Story”></textarea>
<button type=”submit”>Submit</button>
<input type=”hidden” name=”_key” value=”{{form.key}}”>
</form>
{% endform %}