chrubin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with WPBakery Page Builder 5.7ok thank you
Forum: Fixing WordPress
In reply to: Manipulate the data in the contact form 7 message bodyI solved it with this, adding an extra input with a type hidden and handle the IDs
<script type=”text/javascript”>
var $=jQuery.noConflict();
$(document).ready(function () {
$(“#id”).keyup(function () {
var value = $(this).val();
var cadena = value;
var letra1 = cadena[0];
var letra2 = cadena[1];
var codFinal = letra1 + letra2;
$(“#id”).val(codFinal);
});
});
</script>Forum: Fixing WordPress
In reply to: Manipulate the data in the contact form 7 message bodyCould you pass me the links of the tutorials you saw, to see if I get something?
I’m implementing this example, but how would the emails be accommodated in the email tab?
[select your-recipient “CEO|ceo@example.com”
“Sales|sales@example.com”
“Support|support@example.com”]ok thanks, but then how to configure the mail in the email tab? Because it will not let me put the name of [your-recipient] directly
Forum: Fixing WordPress
In reply to: How to put an if in a ninja formok thank you