WebTolk Joomla Extensions
68 Extensions
9 Categories
268 Versions released
233065 Downloads
Plugin for sending data to amoCRM from Joomla feedback forms created using the professional Radical Form plugin. Require WT Amo CRM library. AmoCRM as known as Kommo CRM (https://www.kommo.com/)
The plugin only works together with Radical Form. To communicate with Amo CRM, you need to install and configure the WT Amo CRM library.
rfSubject
pipeline_id
field in the formlead_tag_id
field in the form. The field can contain either a single value or multiple id tags separated by commas.form_id
.phone
and email
are defined as phone and email by defaultselect
, radio
, checkbox
) are combined into one, where the selected values are separated by a comma<form name="callback-menu" class="p-2">
<h2 class="mb-3">Callback</h2>
<div class="mb-3">
<label for="callback-menu-tel" class="form-label">Phone</label>
<input name="phone" required="" type="tel" id="callback-menu-tel" class="form-control"
placeholder="+7 (999) 999-99-99">
</div>
<div class="mb-3"><label for="callback-menu-email" class="form-label">Email</label>
<input name="email"
required=""
type="email"
id="callback-menu-email"
class="form-control"
placeholder="your@email.ru">
</div>
<div class="mb-3">
<label for="callback-menu-message" class="form-label">Message</label>
<textarea name="message" rows="3" id="callback-menu-message" class="form-control"></textarea>
</div>
<input type="hidden" name="form_id" value="123"/>
<!-- Specifying a hidden field with the AmoCRM
pipline id --> <input type="hidden" name="pipeline_id" value="1111111"/> <!-- Specifying a hidden field with the AmoCRM lead tag id
тега --> <!-- It can be a single tag --> <input type="hidden" name="lead_tag_id" value="283172"/> <!-- Or multiple tags separated by commas --> <input type="hidden" name="lead_tag_id" value="283172,188323,382761"/> <!-- Here we select several possible values to send. --> <!-- The selected values will be comma-separated into a single line --> <select name="developer" multiple> <option value="js">JavaScript</option> <option value="php">PHP</option> <option value="android">Android</option> </select> <!-- If the checkbox is set (selected), the value will be sent to the form. --> <!-- If not selected, the field value will not be sent at all. --> <!-- If both options are selected, their values in amoCRM will be listed via --> <!-- comma: 10, 20. --> <label for="checkbox-1">Checkbox with value 10</label> <input type="checkbox[]" value="10" id="checkbox-1"/> <label for="checkbox-2">Checkbox with value
20</label> <input type="checkbox[]" value="20" id="checkbox-2"/> <input type="hidden" name="rfSubject" value="It will be a lead name"/> <button class="btn btn-lg- btn-dark mx-auto rf-button-send">Send</button> </form>
In case of multiple values of one field in the plugin settings, you need to specify the field name without square brackets. For example, in the HTML code you write input name="developer[]" type="checkbox" value="android" />
, and in the plugin settings specify the field namedeveloper
, without square brackets.