User Profile
Aishamustaq340
Copper Contributor
Joined 10 months ago
User Widgets
Recent Discussions
Re: File locked for editing, user not editing it.
It seems like this issue has resurfaced, despite being reported in 2020. Some users are experiencing a message indicating that a file is "locked for editing" even when they don't have it open. Unfortunately, there might not be a straightforward solution, but it's worth exploring possible causes and troubleshooting steps to address it.693Views0likes0CommentsRe: Remove Read Only icon from list
To hide the read-only icons for public users in your embedded list, you can use CSS code to target and hide those icons specifically. Here's an example of how you can do it: ```css /* Hide read-only icons */ .public-user .read-only-icon { display: none; } ``` In this code: - `.public-user` is the class name you can use to target elements specific to public users. - `.read-only-icon` is the class name of the icons you want to hide. By setting `display: none;`, you're instructing the browser not to display those icons for public users. Make sure to replace `.public-user` with the actual class name or selector that identifies public users in your HTML markup. For more help use https://wasuppgb.com/733Views0likes1Comment
Groups
Recent Blog Articles
No content to show