Quote:
Originally Posted by andyv72
|
Sorry, fixed the link to the forum.
Are you saying you want to remove those from being visible to the user? If you are, just edit the templates
dbtech_gallery_view_image_vb - If you are using vB Style
And delete
PHP Code:
<div style="margin-bottom: 15px; margin-top: 15px;">
<div id="gallery_image_link_url">
{vb:rawphrase dbtech_gallery_ref_dir_link}:<br />
<input class="primary textbox" type="text" name="link_url" style="width: 95%" value="{vb:raw image_data.link_url}" readonly="readonly" onfocus="highlight(this); onchange="highlight(this);" />
</div>
<div id="gallery_image_link_bbcode">
{vb:rawphrase dbtech_gallery_ref_bbcode_link}:<br />
<input class="primary textbox" type="text" name="link_bbcode" style="width: 95%" value="{vb:raw image_data.link_bbcode}" readonly="readonly" onfocus="highlight(this); onchange="highlight(this);" />
</div>
<div id="gallery_image_link_bbcode">
{vb:rawphrase dbtech_gallery_ref_bbcode_img}:<br />
<input class="primary textbox" type="text" name="img_bbcode" style="width: 95%" value="{vb:raw image_data.img_bbcode}" readonly="readonly" onfocus="highlight(this); onchange="highlight(this);" />
</div>
</div>
dbtech_gallery_view_image - If you are using New Style
And delete
PHP Code:
<div style="margin-bottom: 10px;">
<div id="gallery_image_link_url">
{vb:rawphrase dbtech_gallery_ref_dir_link}:<br />
<input class="primary textbox" type="text" name="link_url" style="width: 95%" value="{vb:raw image_data.link_url}" readonly="readonly" onfocus="highlight(this); onchange="highlight(this);" />
</div>
<div id="gallery_image_link_bbcode">
{vb:rawphrase dbtech_gallery_ref_bbcode_link}:<br />
<input class="primary textbox" type="text" name="link_bbcode" style="width: 95%" value="{vb:raw image_data.link_bbcode}" readonly="readonly" onfocus="highlight(this); onchange="highlight(this);" />
</div>
<div id="gallery_image_link_bbcode">
{vb:rawphrase dbtech_gallery_ref_bbcode_img}:<br />
<input class="primary textbox" type="text" name="img_bbcode" style="width: 95%" value="{vb:raw image_data.img_bbcode}" readonly="readonly" onfocus="highlight(this); onchange="highlight(this);" />
</div>
</div>
Dylan