Am 18.06.2015 um 18:33 schrieb Connor Behan:
> [...]
> Does anyone know an easy way to hide "Popularity" with a userscript or
> userstyle? [...]

Given that the index of the column not changes, this works:

$('table.results > thead > tr > th:nth-child(5)').hide();
$('table.results > tbody > tr > td:nth-child(5)').hide();

First line removes the header, second line the values. It may not be the
best solution, but I did not find a better way than counting to get the
right column. It uses jQuery from the AUR page, if you want to use it
from a user script you may need a way to inject it.

best regards,
carstene1ns

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to