Plugin Directory

Changeset 1803576


Ignore:
Timestamp:
01/16/2018 05:10:22 AM (8 years ago)
Author:
EngageWP
Message:

Updated readme and tested WP version

Location:
disable-gravity-forms-fields
Files:
1 edited
1 copied

Legend:

Unmodified
Added
Removed
  • disable-gravity-forms-fields/tags/1.3/readme.txt

    r1803573 r1803576  
    22Contributors: EngageWP
    33Tags: Gravity Forms
    4 Tested up to: 4.2
     4Tested up to: 4.9.1
    55Stable tag: 1.3
    66License: GPLv2
     
    3030
    3131= How do I use this plugin? =
    32 
    33 This plugin requires jQuery to be loaded. If your WordPress installation does not currently load jQuery, you must load it for the plugin to work. I like to load jQuery using the Google Hosted Libraries API. You can load jQuery via Google by placing this snippet in your (child) theme's functions.php file:
    34 
    35 `
    36 //* Load jQuery via Google Hosted Libraries
    37 add_action('init', 'rv_load_google_jquery');
    38 function rv_load_google_jquery() {
    39     if (!is_admin()) {
    40         wp_deregister_script('jquery');
    41         wp_enqueue_script('jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, '1.11.2');
    42     }
    43 }
    44 `
    4532
    4633Once you've installed and activated the plugin, just add a the appropriate class to your field ("disabled" or "readonly").
  • disable-gravity-forms-fields/trunk/readme.txt

    r1158060 r1803576  
    22Contributors: EngageWP
    33Tags: Gravity Forms
    4 Tested up to: 4.2
     4Tested up to: 4.9.1
    55Stable tag: 1.3
    66License: GPLv2
     
    3030
    3131= How do I use this plugin? =
    32 
    33 This plugin requires jQuery to be loaded. If your WordPress installation does not currently load jQuery, you must load it for the plugin to work. I like to load jQuery using the Google Hosted Libraries API. You can load jQuery via Google by placing this snippet in your (child) theme's functions.php file:
    34 
    35 `
    36 //* Load jQuery via Google Hosted Libraries
    37 add_action('init', 'rv_load_google_jquery');
    38 function rv_load_google_jquery() {
    39     if (!is_admin()) {
    40         wp_deregister_script('jquery');
    41         wp_enqueue_script('jquery', '//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js', false, '1.11.2');
    42     }
    43 }
    44 `
    4532
    4633Once you've installed and activated the plugin, just add a the appropriate class to your field ("disabled" or "readonly").
Note: See TracChangeset for help on using the changeset viewer.