This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Two Factor Authentication on Magento 2.4 is a bit of pain for those who are testing out on thier localhost. | |
After successful installation, we can disable this feature by using these commands | |
-------------------------------------------------------- | |
$ bin/magento module:disable Magento_TwoFactorAuth | |
$ bin/magento cache:flush | |
$ bin/magento setup:di:compile | |
-------------------------------------------------------- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{-- | |
Laravel's default pagination html tags modifed to make Bulma CSS compatible paginator. | |
1. First run "php artisan vendor:publish --tag=laravel-pagination" | |
2. This command will place the views in the resources/views/vendor/pagination directory. | |
3. Replace text on "bootstrap-4.blade.php" with this code. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{{-- | |
Laravel's default pagination html tags modifed to make Bulma CSS compatible paginator. | |
1. First run "php artisan vendor:publish --tag=laravel-pagination" | |
2. This command will place the views in the resources/views/vendor/pagination directory. | |
3. Replace text on "default.blade.php" with this code. |