Footer can't be overridden #3892
-
Beta Was this translation helpful? Give feedback.
Replies: 16 comments 29 replies
-
Thanks for posting this. I am having a related issue. In Nova 3, we customized the login page to use OAuth server. But since Nova 4 uses vue components for rendering UI, it is not as simple as publishing the views and updating them. I bet the Nova team is probably already aware of this and might have a solution in the next point release. |
Beta Was this translation helpful? Give feedback.
-
it's not really a critical bug. however, we don't want our clients to know we're using this haha! anyway, hope it'll resolved be soon. |
Beta Was this translation helpful? Give feedback.
-
+1 for wanting to change the footer/header. Thanks! |
Beta Was this translation helpful? Give feedback.
-
I haven't tried it yet but this might help: |
Beta Was this translation helpful? Give feedback.
-
You can tweak the footer by publishing the (only)
Not fully useful but it is just an idea... |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
We will probably reintroduce those customization features in the future, once everything settles down a bit. |
Beta Was this translation helpful? Give feedback.
-
Yes I was disappointed to see this removed from v4 I have a "sensitive" client base and I'm sure the Nova link branding there will cause confusion. |
Beta Was this translation helpful? Give feedback.
-
I can't change the favicon anymore on my end. Probably related to the same issue. Removing these customization features is a deal breaker. I can't upgrade at the moment. |
Beta Was this translation helpful? Give feedback.
-
In the meantime, I've had to copy the |
Beta Was this translation helpful? Give feedback.
-
I've created a workaround that reintroduces footer content customization to Nova 4. Installation and usage: wdelfuego/nova4-customizable-footer Let me know if you run into any problems using that package. |
Beta Was this translation helpful? Give feedback.
-
Hello, The same for us ; we bought the unlimited licence and we cannot upgrade all our existing code base because our customer are French and doesn't want to have English wording and un-desired copyrights OR vendors trivia version Do you have any dates for "reintroduce those customization features" ? |
Beta Was this translation helpful? Give feedback.
-
Same issue here... our company keeps 99% of the Nova design, but we had changed the sidebar (background, link colors, hover etc) to match our brand, and now won't be using Nova 4 until this is possible. |
Beta Was this translation helpful? Give feedback.
-
Like everyone else, running into the same issue regarding customization of Nova 4.x - we have our custom theme for 3.x packaged up and a separate package to allow us to use our OAUTH 2.0 service for logging into our Nova instances - sadly due to the migration to InertiaJs and thus the removal of the Blade files, re-implementing and customizing stuff like this feels like a no-go in Nova 4.x and stops us from upgrading too... wish we knew this before buying the new license |
Beta Was this translation helpful? Give feedback.
-
The footer can now be overridden by using the You could return a simple string, HTML, or even the output of We're working on a clean way to allow even more customization of some theme elements, but we'd like to find a way to do it without creating a bunch of issues for folks when they do customize these elements (We got a lot of people who borked their layout and couldn't receive updates in the previous series). In the end, Nova is opinionated, so it may not ever be 1:1 with the previous Blade layout implementation. |
Beta Was this translation helpful? Give feedback.
-
Also, I personally don’t need confirm windows on the log out and stop impersonating buttons. They’re just annoying. Remove or option to remove is my vote. |
Beta Was this translation helpful? Give feedback.
The footer can now be overridden by using the
Nova::footer
method in yourApp\Providers\NovaServiceProvider::boot
method: https://nova.laravel.com/docs/4.0/installation.html#customizing-nova-s-footerYou could return a simple string, HTML, or even the output of
Blade::compile()
.We're working on a clean way to allow even more customization of some theme elements, but we'd like to find a way to do it without creating a bunch of issues for folks when they do customize these elements (We got a lot of people who borked their layout and couldn't receive updates in the previous series). In the end, Nova is opinionated, so it may not ever be 1:1 with the previous Blade layout implementation.