Replies: 6 comments 14 replies
-
Had the same problem. I added a link on the menu. I'm still waiting to modify the vue components because of the footer. |
Beta Was this translation helpful? Give feedback.
-
one month still no reply? looks like a "buy and shush" customer care policy from @taylorotwell s team.... |
Beta Was this translation helpful? Give feedback.
-
Would love to see this implemented. Branding has gotten a big downgrade since v3 which I don't mind, but for most customer journeys you'd want the front-end application to be linked to the logo. This currently seems impossible. Putting the anchor inside the SVG is not a solution. |
Beta Was this translation helpful? Give feedback.
-
Hey peeps, can we please get this prioritised! I've been waiting for this feature for over a year, and my client is absolutely loosing the plot now 🤣 Cc. @davidhemphill |
Beta Was this translation helpful? Give feedback.
-
@Illizian Thanks for reaching out to us and your patience, it's been some time 🙏 Having the possibility to customize the logo's URL would indeed be nice imo |
Beta Was this translation helpful? Give feedback.
-
It's a little hacky, but since I needed that feature too and had to find a way myself, here is what I did: You can add custom JavaScript to your Nova backend. In your NovaServiceProvider: // NovaServiceProvider.php - boot method
Nova::script('custom', public_path('js/nova-custom.js')); And in that script, simply catch the click and change the location. // custom.js
Nova.booted(() => {
const element = document.getElementById('your-logo'); // if you use an svg, give it that id in the <svg ...> tag
element?.addEventListener('click', (e) => {
e.preventDefault();
window.location.href = '/';
});
}); |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
In v3 with the publishable blade files the link on the logo in the sidebar could easaly be overridden.
This seems to be not possible now in v4 enymore?
Would be nice to be able to set a link to the frontend of the site linking the main dashboard there doesnt make to much sense from my point of view.
Beta Was this translation helpful? Give feedback.
All reactions