=== Formidable jQuery Autocomplete ===
Requires at least: 3.8
Tested up to: 4.8
Stable tag: 1.0.0b1

== Filters ==

= jqautocom_custom_js =

Allows you to load a custom jQuery file to override delivered functionality

Usage:

add_filter('jqautocom_custom_js', 'load_custom_js');
/**
 * load_custom_js function.
 *
 * @access public
 * @param mixed $filename
 * @return $filename
 */
function load_custom_js( $filename ) {
    $filename = get_stylesheet_directory() . '/js/my_custom_js.js';
    return $filename;
}

= jqautocom_custom_css =

Allows you to load a custom jQuery file to override delivered functionality

Usage:

add_filter('jqautocom_custom_css', 'load_custom_css');
/**
 * load_custom_js function.
 *
 * @access public
 * @param mixed $filename
 * @return $filename
 */
function load_custom_css( $filename ) {
    $filename = get_stylesheet_uri() . '/css/my_custom_css.css';
    return $filename;
}

== Changelog ==

= 1.0.0b1.3 =
Corrected spelling error in file name that was preventing plugin activation in certain environments
Reverted method for loading hooks back to direct function call

= 1.0.0b1.2 =
Fixed timing issue with Pro fields display

= 1.0.0b1.1 =
Changed method for loading hooks to use plugins_loaded action

= 1.0.0b1 =
* Initial release


