Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ARCHTKT/d89b61dad52eb8f3ca194653f81bf1b2 to your computer and use it in GitHub Desktop.
Save ARCHTKT/d89b61dad52eb8f3ca194653f81bf1b2 to your computer and use it in GitHub Desktop.
Pequeños trocitos de código que añaden funcionalidad a Gravity Forms
<?php // Al copiar no meter esta línea, coger sólo los párrafos
// Activa la opción para ocultar los campos de descripción en Gravity Forms
add_filter( 'gform_enable_field_label_visibility_settings', '__return_true' );
// Oculta el botón 'Añadir Formulario' de añadir formulario en el editor de páginas y entradas de WordPress
add_filter( 'gform_display_add_form_button', '__return_false' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment