Skip to content

Instantly share code, notes, and snippets.

@GreatPotato
Created August 6, 2013 10:29
Show Gist options
  • Save GreatPotato/6163423 to your computer and use it in GitHub Desktop.
Save GreatPotato/6163423 to your computer and use it in GitHub Desktop.
Search by custom column in the backend order search
<?php
public function subscribeEvents()
{
Backend::$events->addEvent('backend:onControllerReady', $this, 'on_backend_controller_ready');
}
public function on_backend_controller_ready($controller)
{
$controller->list_search_fields[] = 'x_custom_column';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment