Question By
Solved

Default avatar and Wave 2.0 message

Solved
cassiolacerda

Jul 11th, 2022 05:02 PM

Hello, I would like to ask two questions.

1 - How can I remove this message that appears sometimes on the screen? Foto 2.png


2 - How can I change the default avatar image? I changed it in voyager.php but it doesn't work.

Foto 3.png

Foto 1.png

Report
1
thinkverse

Jul 11th, 2022 05:18 PM

Best Answer

  1. Those are announcements, which are seeded in database/seeders/AnnouncementsTableSeeder.php, you can either remove the seeder all together by removing the file and removing the $this->call(AnnoucementsTableSeeder::class); call in database/seeders/DatabaseSeeder.php. That call should be at around line 20. You can also remove the announcement in the admin panel under /announcements - should be the fourth menu item from the bottom, from there you can click in the Delete action to remove the announcement.

  2. The file path for the default_avatar starts as the storage/app/public folder, it won't have access to anything below that folder. If you want to update the default avatar, I'd recommend replacing the default.png file in storage/app/public/users/ instead.

Report
2