How do I edit privacy and terms pages?
Forum rules
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
Always add your Laravel, Aimeos and PHP version as well as your environment (Linux/Mac/Win)
Spam and unrelated posts will be removed immediately!
-
- Posts: 20
- Joined: 22 Oct 2020, 15:39
How do I edit privacy and terms pages?
Confused again.
I changed the link in app.blade.php to /privacy and it's now clickable and shows the page 'Privacy policy page'. Great.
However, the source of this page appears to be located at vendor/aimeos/aimeos-laravel/src/views/page/privacy.blade.php. Which is not in the /ext directory like other site pages. So, how do I "override" that page and provide my own content?
I changed the link in app.blade.php to /privacy and it's now clickable and shows the page 'Privacy policy page'. Great.
However, the source of this page appears to be located at vendor/aimeos/aimeos-laravel/src/views/page/privacy.blade.php. Which is not in the /ext directory like other site pages. So, how do I "override" that page and provide my own content?
Re: How do I edit privacy and terms pages?
Standard Laravel blade templates of the package can be overwritten by Laravel means. The documentation is a bit hidden but available here:
- https://aimeos.org/docs/latest/laravel/ ... he-package
- https://laravel.com/docs/master/packages#views
You have to copy the files you want to overwrite from:
./vendor/aimeos/aimeos-laravel/src/views/
into this directory of your application:
./resources/views/vendor/shop/
Keep the sub-directory structure below if there's any.
- https://aimeos.org/docs/latest/laravel/ ... he-package
- https://laravel.com/docs/master/packages#views
You have to copy the files you want to overwrite from:
./vendor/aimeos/aimeos-laravel/src/views/
into this directory of your application:
./resources/views/vendor/shop/
Keep the sub-directory structure below if there's any.
Professional support and custom implementation are available at Aimeos.com
If you like Aimeos,
give us a star
If you like Aimeos,

-
- Posts: 20
- Joined: 22 Oct 2020, 15:39
Re: How do I edit privacy and terms pages?
Great - got it thanks 
