Usage
This function runs automatically, so it is not called manually. Is this incorrect?
Additional Notes
This function also changes the input value to the previous search when applicable.
Source File
Located in /assets/js/modules/search.js on line 320.
No Hooks
This function does not have any filters or actions available. Request one?nebula.wpSearchInput = function(){ //jQuery('#post-0 input[name="s"], #nebula-drawer input[name="s"], .search-results input[name="s"]').trigger('focus'); //Automatically focus on specific search inputs //Set search value as placeholder let searchVal = nebula.get('s') || jQuery('input[name="s"]').val(); if ( searchVal ){ jQuery('input[name="s"], .nebula-search input').attr('placeholder', searchVal.replaceAll('+', ' ')); } };
Override
To override or disable this JavaScript function, simply redeclare it with the exact same function name. Remember: Some functionality is conditionally loaded via dynamic imports, so if your function is not overriding properly, try listening for a DOM event (described below).
For non-module import functions:
nebula.wpSearchInput = function(){ //Write your own code here, leave it blank, or return false. }
For dynamically imported module function overrides:
jQuery(window).on('load', function(){ nebula.wpSearchInput = function(){ //Write your own code here, leave it blank, or return false. } });
Custom Nebula DOM events do also exist, so you could also try the following if the Window Load listener does not work:
jQuery(document).on('nebula_module_loaded', function(module){ //Note that the module variable is also available to know which module specifically was imported if ( typeof nebula.wpSearchInput === 'function' ){ nebula.wpSearchInput = function(){ //Write your own code here, leave it blank, or return false. } } });