• Welcome to PHPVIBE Forums. Please log in.

[ Video Sharing CMS v4 ] Disable picture upload

Started by editamedia,

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

editamediaTopic starter

Is there any way for disable picture upload? I don't need this.
  •  

PHPVibe A.

Hi! You can remove it in tpm/main/

Remove in tpl.globals.php

<li><a href="'.profile_url(user_id(), user_name()).'#shareTowall" title="'._lang('Upload an image from your PC').'"><i class="icon-picture"></i>'._lang('Upload image from your PC').'</a>


Remove in profile.php

<li><a data-toggle="tab" href="#pictureTab"><i class="icon-picture"></i></a></li>


and

<div class="tab-pane" id="pictureTab">
			<div class="share">
<form id="validate" class="form-horizontal styled" action="<?php echo canonical(); ?>" enctype="multipart/form-data" method="post">
<input type="file" name="play-img" id="play-img" class="validate[required] styled">
<input type="text" class="validate[required] full" style="margin-top:5px; margin-bottom:5px;" name="pic-title" placeholder="<?php echo _lang("What's this picture?"); ?>"/>
<input type="text" class="full" style=" margin-bottom:5px;" name="pic-desc" placeholder="<?php echo _lang("Say something more about this picture"); ?>"/>
<input type="text" id="tags" name="tags" class="tags" value="<?php echo _lang("picture"); ?>">
<button type="submit" class="btn btn-primary"><i class="icon-ok"></i> <?php echo _lang(" Post now"); ?> </button>
				
</form>
</div>
<br style="clear:both;">
</div>

Similar topics (7)