The link seen as "powered by ActiveAdmin" on every page of the app using this ActiveAdmin gem, can it be removed?? If yes How?? Is there any legality associated with the link??
You can either provide your custom footer:
ActiveAdmin.setup do |config|
config.view_factory.footer = MyFooter
end
class MyFooter < ActiveAdmin::Component
def build
super(id: "footer")
para "Copyright #{Date.today.year} Your Company"
end
end
Or you can provide an alternative translation:
en:
active_admin:
powered_by: "Your custom text"
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With