Skip to content

Instantly share code, notes, and snippets.

@cvl01
Created February 19, 2025 10:08
Show Gist options
  • Select an option

  • Save cvl01/4dc0e37f443fc0d0faa799329fb97770 to your computer and use it in GitHub Desktop.

Select an option

Save cvl01/4dc0e37f443fc0d0faa799329fb97770 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