You can either place the code snippet in the theme functions.php file or in a custom functionality plugin: http://justintadlock.com/archives/2011/02/02/creating-a-custom-functions-plugin-for-end-users
Edit:
To enqueue custom scripts on the edit page you should use admin_enqueue_scripts e.g.
add_action( 'admin_enqueue_scripts', 'my_jquery_function' );
function my_jquery_function() {
if ( rgget( 'page' ) != 'gf_edit_forms' )
return;
wp_enqueue_script('mytest1', get_stylesheet_directory_uri() . '/assets/javascripts/mytest1.js');
wp_enqueue_script('mytest2', get_stylesheet_directory_uri() . '/assets/javascripts/mytest2.js');
}
Related Posts:
- How do I show data from gravity forms in my template? [closed]
- Registering Class methods as hook callbacks
- How to customize woocommerce related products? [closed]
- Changing the “Plugin Activated” Message Default
- Hooking in to plugins
- Generate dormant hook references
- Better to fire specific hooks or generic hooks with parameters?
- How to only hook on Single.php after content?
- How to save the values of checkbox to the register setting?
- Can we hook a static method of a class to add_action inside that class?
- Edit plugin without hooks in functions.php
- How can I log a user out of WordPress before the page loads?
- What is the ‘admin_action_’ . $_REQUEST[‘action’] hook used for?
- Filter out results from REST API
- How can I remove a hooked action created by a plugin?
- Enqueue style inside shortcode but its loaded at the bottom of page (before footer scripts)
- Good tools for locating hooks in a wordpress page/admin interface/blog post?
- disable active plugins for specific theme
- Twillio How To Send SMS for Custom Post Type
- Hide WordPress Plugin Deactivation Links
- Find out if request is for custom post type archive before query runs
- Pass A Value From Outside To A Plugin Variable
- Does the ‘nav_menu_css_class’ filter accept 2 or 3 arguments?
- do_action and hook methods
- the_posts hook, which set of posts?
- Is it possible to add an action to the currently running action?
- OOP: Display warning and deactivate the plugin if PHP version is less than 5.4
- Over write plugin templates
- How to find out what blocks are added by a plugin
- Determine plugin name from within plugin_action_links filter
- How to prevent action in ajax request, when in admin side?
- Easy Digital Downloads (EDD) – Purchase Receipt emails couldn’t be logged
- Placement of Code in Plugin for hooking `save_post`
- Can I use a method from an existing plugin as an action hook?
- What are the benefit in adding hook in the init() hook?
- Reposition Woocommerce Message
- How to initialize something in unit test before the init hook being called?
- Prevent a plugin from being automatically activated
- How do action and filter hooks understand where to look for the core function that we hooked our function to them
- How get a value from a plugin into another plugin through action/filter
- Any hook for pre-plugin-update -either bulk or single plugin update
- Add custom message to the plugins page of WordPress
- How do I display only the latest post on my home page, while maintaining proper plugin hooks?
- Hooking in to replace the Sidebar/Widget areas
- How to get all of the activate_plugin action parameters?
- Modifying the comments section through a plugin regardless of theme
- woocommerce_package_rates not fired when wordpress woocommerce accessed as non ajax
- wp_get_post_terms is difference obj model than the one in rest api response
- Get Time Taken By Each Action Hook in WordPress
- Best place for short bio,image and button [closed]
- Migrating hosts, 500 errors and plugin issues
- do_action() hook into load-(page)
- The Hook registration_errors was not called
- Why do plugins often ask to add in to templates?
- remove_action not removing add_action from constructor
- How to get menu location in wp_update_nav_menu hook
- Flipping Book PHP Code? Any experience?
- Display Plugin Panels Outside of Admin Areas
- How to use template_include hook with form submission?
- Save user total active time after login in wordpress [closed]
- Advanced WordPress plugin activation detection
- wp_loaded with static Singleton
- How to return the values from a row where a value occurs for the first time among the rows available?
- is it possible to hook every page style?
- How to hook into action/filter call
- How to automatically activate users after registration without activation email?
- Hooks to run after a core upgrade?
- Adding custom Field To The Posts Listing
- Add hook after content without formatting
- Using Remove Action Hook in Plugin
- admin_post hook not firing function inside class
- Alternative Hook to the_content for Changing Background Color
- Edit plugin’s HTML output with Hooks
- Display Woocommerce attribute name above product title
- {status}_{post_type} does not run correctly?
- Generating shortcode and HTML on button click
- WordPress Boilerplate Plugin doesn’t see callback functions for add_settings_field and add_settings_section
- What is the correct entry point for capturing coverage data
- Add a filter to a method in the parent theme
- Publish check if the edited content has HTML “div”
- Run only on plug-in activation instead of wp_head
- How to `remove_action` from plugin
- Display_rows() and column_cb() strange behaviour
- Transition Post status not working
- functions.php conditional output for a single plugin
- Carrying information from button click into form [closed]
- OOP Plugin: Where should I place the action hooks in the class?
- add query string to all pages after user logged in
- How wordpress plugin hooks works? [duplicate]
- Post curl function save twice using plugin hook function wordpress
- Order shipped by which driver[hook for woocoomerce order staus changed and popup in admin panel ] [closed]
- Is it possible to set different payment gateway on each Gravity Forms form? [closed]
- Hook automatic_updates_complete to autoupdate plugin
- How to modify submit button on GravityForms
- Can’t use updated variables in handle function
- Neither update_option nor delete_option fires in deactivation hook
- Show WooCommerce products based on query parameters on redirect
- WordPress : how to create onglet and remove it when only one
- I have to select text from gutenberg editor. Purpose is to store and replace text
- Which approach for managing automatic updates would be more robust?