Hi,
ich habe alles exakt so gemacht wie hier beschrieben – Nur leider erhalte ich nur eine Fehlermeldung:
https://kriesi.at/support/topic/forms-how-to-limit-number-of-rows-in-message-text-imput-window/
“No direct script access allowed”
Was mache ich falsch?
Danke für jeden Tipp!
LG
Jens
Hey medienvirus,
Please add following code to Functions.php file of your child theme in Appearance > Editor
function custom_class_rows(){
?>
<script>
jQuery(window).load(function(){
jQuery('textarea').attr('rows','7');
});
</script>
<?php
}
add_action('wp_footer', 'custom_class_rows');
Best regards,
Yigit
thank you! :) This works!