- This topic has 3 replies, 2 voices, and was last updated 10 years, 5 months ago by .
Viewing 4 posts - 1 through 4 (of 4 total)
Viewing 4 posts - 1 through 4 (of 4 total)
These forums are now closed and remain for historical purposes.
None of the content applies to the new version 3. For support, get in touch via our contact form.
Forums › Forums › Search & Filter Pro › chosen.jquery.min.js?ver=1.4.3 missed
Tagged: `
Ah yes, the new S&F doesn’t need it anymore.
The issue is actually with the custom code I gave you from before.
So the code from this:
Should be replaced with:
wp_register_script( 'search-filter-plugin-build', home_url("/wp-content/plugins/search-filter-pro/public/assets/js/search-filter-build.js"), array('jquery', 'jquery-ui-datepicker'), '1.4.3' );
wp_localize_script('search-filter-plugin-build', 'SF_LDATA', array( 'ajax_url' => admin_url( 'admin-ajax.php' ), 'home_url' => (home_url('/')), 'sfid' => '' ));
wp_enqueue_script( 'jquery-ui-datepicker' );
wp_enqueue_script( 'search-filter-plugin-build' );
Basically, just remove all the chosen stuff.
Thanks