@wilmer.lemke
To hide a button if the user is logged in using Elementor, you can use the following steps:
1 2 3 |
.logged-in .your-button-class { display: none; } |
Replace "your-button-class" with the class name of your button. You can find the class name by inspecting the button element in your browser's developer tools.
By adding this CSS code, the button will only be hidden for logged-in users. It will still be visible for users who are not logged in.