-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[HELP] How to remove a user profile section #1157
Comments
Hi @marquezmiguel I'm not sure what you have done, since this package does not come with a profile view |
that's right, I installed laravel jetstream and I want to remove that section I have marked in the image, but I can't find the file that section refers to. this is the file show.blade.php
I need to remove this section |
But, that's part of UPDATE: Looking at the |
apparently it is this file, I am trying to delete that section but when I do it, the display is very broken, maybe I am deleting something wrong, my God. UPDATE: by deleting or commenting out the entire contents of the navigation-menu.blade.php file the header menu disappears completely. it seems that this file only refers to the settings inside the header in the user profile section. |
Nice, good to see you have solved it. However, take a read to next issue: #1001, it is discussed somehow the integration of this package with |
this works correctly in my project, thanks for bothering to look for that article. by the way I enabled the 'usermenu_image' function of adminlte and I have a peculiar problem, in the home page the image and the name are displayed correctly but when I access to another directory the image is broken. |
You may try replacing any of these blade files with issues, with the next code: @extends('adminlte::page')
@section('title', 'Dashboard')
@section('content_header')
<h1>Dashboard</h1>
@stop
@section('content')
<p>Welcome to this beautiful admin panel.</p>
@stop If after that, the issue disappear, then it may be related to some of the styles that are applied by the blade view, you will have to investigate which one... |
it seems that the one causing the problems is
that brings the laravel files. |
It may be because you are trying to embed one layout (from the <x-guest-layout>
{{-- INNER JETSTREAM CODE --}}
</x-guest-layout> Then replace it by something like: @extends('adminlte::page')
@section('title', 'The title')
@section('content_header')
<h1>The Content Header (if needed)</h1>
@stop
@section('content')
{{-- INNER JETSTREAM CODE --}}
@stop |
if i remove the layout is completely broken for example this is the code with
and this is the result and this is the code without
and this is the result this problem should I report it as a bug? |
No, it is not a problem on this package, is part of the integration with other package... |
have you seen my code? i'm doing it right, right? that's the right way? i want to make sure i'm doing things right. |
@marquezmiguel I'm not sure, I haven't integrated @section('css')
<link rel="stylesheet" href="/css/admin_custom.css">
@stop
@section('js')
<script> console.log('Hi!'); </script>
@stop If the only issue you are facing is with the upper right logo image, then use your browser's inspector to check what style is added to it when you are mixing the layout, probably both layout uses the same class for the logo image and are adding styles to it... UPDATE: I'm also noting that |
possibly a conflict is occurring between the two technologies, I will see how to proceed, thank you for your help. |
OK, if you manage to found a solution for the integration of both technologies, you may share a brief summary here. It may be helpful to other people... |
hello good morning I am trying to remove the following section from the user profile section and I cannot find the code that refers to this section inside the resources/view/profile/show.blade.php file
Am I modifying the correct file?
The text was updated successfully, but these errors were encountered: