Images across in attachment

Modifications for phpBB3.
Try the Mods here and share Your own Mods
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support

Images across in attachment

Post by wcgamer »

hello, how did Images across in attachment, like this
Без имени-1.jpg
thank you, Max.
You do not have the required permissions to view the files attached to this post.

Images across in attachment

Post by Stoker »

Open: styles/prosilver/template/attachment.html
Find:

Code: Select all

<!-- IF _file.S_THUMBNAIL -->
		<dl class="thumbnail">
			<dt><div class="highslide-gallery"><a href="{_file.U_DOWNLOAD_LINK}/{_file.DOWNLOAD_NAME}" class="highslide" onclick="return hs.expand(this)"><img src="{_file.THUMB_IMAGE}" alt="{_file.DOWNLOAD_NAME}" title="{_file.DOWNLOAD_NAME} ({_file.FILESIZE} {_file.SIZE_LANG}) {_file.L_DOWNLOAD_COUNT}" /></a><div class="highslide-caption">{_file.DOWNLOAD_NAME} ({_file.FILESIZE} {_file.SIZE_LANG}) {_file.L_DOWNLOAD_COUNT}</div></div></dt>
			<!-- IF _file.COMMENT --><dd> {_file.COMMENT}</dd><!-- ENDIF -->
		</dl>
		<!-- ENDIF -->
Replace with:

Code: Select all

<!-- IF _file.S_THUMBNAIL -->
		<a href="{_file.U_DOWNLOAD_LINK}/{_file.DOWNLOAD_NAME}" class="highslide" onclick="return hs.expand(this)"><img src="{_file.THUMB_IMAGE}" alt="{_file.DOWNLOAD_NAME}" title="{_file.DOWNLOAD_NAME} ({_file.FILESIZE} {_file.SIZE_LANG}) {_file.L_DOWNLOAD_COUNT}" /></a><div class="highslide-caption">{_file.DOWNLOAD_NAME} ({_file.FILESIZE} {_file.SIZE_LANG}) {_file.L_DOWNLOAD_COUNT}</div>
		<!-- ENDIF -->

Images across in attachment

Post by wcgamer »

no changes.
user: test
password: 123456
http://wcbot.dyndns.org/forum/viewtopic ... 2&start=10

Images across in attachment

Post by Stoker »

Open styles/prosilver/templates/bbcode.html
Find and delete:

Code: Select all

<!-- BEGIN inline_attachment_open --><div class="inline-attachment"><!-- END inline_attachment_open -->
<!-- BEGIN inline_attachment_close --></div><!-- END inline_attachment_close -->

Images across in attachment

Post by wcgamer »

thank you :)