Admin Footer
-
How do we remove rge Poewred by Bagisto, an open source project by Webkul? We need to replace it with our own Network's name. Thanks
-
You can remove or change the “Powered by Bagisto” badge — but only if doing so is allowed by Bagisto’s license and you keep required copyright notices where legally required.
Here’s a clear, safe guide on how to do it:
⸻
- Check the License First
Bagisto is published under the MIT License. That means:
• You can modify the code.
• You can remove or replace branding in your own deployment.
• BUT you must still include the original license and copyright notice in distributed copies or public code.So you can replace “Powered by Bagisto” with your own text for your app/website, as long as you keep the MIT license text elsewhere (e.g., in your codebase).
You should not remove the copyright/license file from the source code.⸻
- How to Remove/Replace the Footer Text
The “Powered by Bagisto” text appears in the frontend footer. To change it:
Option A — Edit the Blade Template
1. Go to your Bagisto project folder.
2. Open:resources/themes/velocity/views/layouts/footer.blade.php
3. Find the line with “Powered by Bagisto”. 4. Replace it with your own network name.For example:
<p>
{{ date('Y') }} Your Network Name
</p>⸻
Option B — Override the Footer in Your Custom Theme
If you’re using a custom theme:
1. Copy the footer template:resources/themes/your-theme/views/layouts/footer.blade.php
2. Edit it exactly the same way.This keeps the core Bagisto code unchanged and makes upgrades safer.
⸻
- Clear the Cache
After editing, run:
php artisan view:clear
php artisan cache:clear⸻
Notes
This change only affects the display text.
Do not delete the MIT License file or required notices from your code repository — that would violate the license.⸻
️ Legal ReminderThe MIT License allows removing branding in your own deployment, but:
• If you distribute modified code publicly (e.g., on GitHub), you must include the original MIT license text somewhere.
• Always check the license text for compliance.⸻
If you want, I can show exact code snippets from your footer file — just let me know!