Since you asked how to remove download links on each page, it is best to add the following line in the config / initializers / active_admin.rb file .
config.namespace :admin do |admin|
admin.download_links = false
end
You can also specify which parameters you want to use to load data, for example:
config.namespace :admin do |admin|
admin.download_links = [:pdf]
end
Note. Remember to restart the server after changing the configuration file.
source
share