- Posts: 32
COMMUNITY FORUM
[SOLVED] Image Browse server...
- Victoria
-
Topic Author
- Offline
- Junior Member
Less
More
9 years 4 months ago #150203
by Victoria
Image Browse server... was created by Victoria
Hello,
I use the frontend editing page for the members to post. Under the image tab on frontend edit, I need to hide the "Browse server button" so all register members cannot access to the server file. What would be the best way?
Thank you.
Victoria
I use the frontend editing page for the members to post. Under the image tab on frontend edit, I need to hide the "Browse server button" so all register members cannot access to the server file. What would be the best way?
Thank you.
Victoria
Please Log in or Create an account to join the conversation.
- zecaffe
-
- Offline
- New Member
Less
More
- Posts: 19
9 years 4 months ago #150204
by zecaffe
Replied by zecaffe on topic Image Browse server...
Maybe one way but, not the safest is to hide input field and button with css:
<input type="text" name="existingImage" id="existingImageValue" class="text_area" readonly=""> and
<input type="button" value="Browse server..." id="k2ImageBrowseServer">
<input type="text" name="existingImage" id="existingImageValue" class="text_area" readonly=""> and
<input type="button" value="Browse server..." id="k2ImageBrowseServer">
Please Log in or Create an account to join the conversation.
- Lefteris
-
- User
Less
More
9 years 4 months ago #150208
by Lefteris
Replied by Lefteris on topic Image Browse server...
@Victoria
When used in front-end the media manager has read-only permissions so this is not an issue to worry about.
There is no option to disable media manager in front-end. You can hide the button using CSS code:
Note that this code just hides the button. If the user knows, he can still type the URL of the media manager and open it.
When used in front-end the media manager has read-only permissions so this is not an issue to worry about.
There is no option to disable media manager in front-end. You can hide the button using CSS code:
#k2ImageBrowseServer, #existingImageValue { display: none;}
Note that this code just hides the button. If the user knows, he can still type the URL of the media manager and open it.
Please Log in or Create an account to join the conversation.
- Victoria
-
Topic Author
- Offline
- Junior Member
Less
More
- Posts: 32
9 years 4 months ago #150210
by Victoria
Replied by Victoria on topic Image Browse server...
Thank you!
Please Log in or Create an account to join the conversation.
- Lefteris
-
- User
Less
More
9 years 4 months ago #150213
by Lefteris
Replied by Lefteris on topic Image Browse server...
You are welcome.
Please Log in or Create an account to join the conversation.