Skip to content

Instantly share code, notes, and snippets.

@dexit
Forked from cvl01/functions.php
Created July 25, 2025 10:11
Show Gist options
  • Select an option

  • Save dexit/9836ba4ebf777655775d7236260131e7 to your computer and use it in GitHub Desktop.

Select an option

Save dexit/9836ba4ebf777655775d7236260131e7 to your computer and use it in GitHub Desktop.
Remove Elementor Pro search box settings query param
<?php
add_action('elementor_pro/search/before_input', function ($module) {
$module->remove_render_attribute('widget_props', 'name');
$module->remove_render_attribute('widget_props', 'value');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment