/toolbar -d <n/name>

To get the <name>, you can get a list of toolbar button names with this alias:

Code:
alias listbuttons {
  var %i = 1
  while ($toolbar(%i)) {
    echo -a $toolbar(%i).name
    inc %i
  }
}