=> modulo_per_accesso
VUOI SCRIVERCI?
INSERIMENTO Scheda Evento
=> ricezione_post_id
MODIFICA Scheda Evento
https://legacy.forums.gravityhelp.com/topic/fix-fields-panels-so-theyre-always-visible-when-editing-long-forms
https://endurtech.com/create-read-only-field-in-gravityforms/
https://youtu.be/_cdQN8PgHTA – ONEMUSIC demo video
https://youtu.be/0p-aRfDpxfM – SHE’S ALWAYS A WOMAN – ONE MUSIC (Piccinelli – Zanibelli – Garavelli)
https://youtu.be/2wu1259fok0 – STAND BY ME – ONE MUSIC (Sangalli – Girelli – Maciel)
https://youtu.be/ZtAsJXaWecs – AVE MARIA DI GOMEZ – CRISTINA SFERRAZZA – ONEMUSIC
https://youtu.be/MQVK6CZ8YQs – CITTÀ VUOTA – ONE MUSIC (Girelli – Del Fiol – Ferro – Zanibelli – Perletti – De Palma)
https://youtu.be/JBFdzlPS1vE – POR UNA CABEZA di Carlos Gardel (Girelli – Zani – Garavelli) ONE MUSIC
https://youtu.be/X9luNkCMNM0 – AIN’T NO MOUNTAIN HIGH ENOUGH (Girelli – Maciel)
// update the number ‘1’ to the ID number on your form
// https://endurtech.com/create-read-only-field-in-gravityforms/
add_filter( ‘gform_pre_render_8’, ‘add_readonly_script’ );
function add_readonly_script( $form )
{
?><script type=”text/javascript”>jQuery(document).ready(function() { jQuery(“li.gf_readonly name”).attr(“readonly”,”readonly”); });</script><?php
return $form;
}