عرض مشاركة واحدة
قديم 04-08-2018, 08:48 PM
المشاركة 5
هيلبرنت
.:: رفيق درب ::.
  • هيلبرنت غير متواجد حالياً
افتراضي رد: طريقة حدف التاريخ من المواضيع المؤرشفة بقوقل او المنتدى
تفضل ابحث عن قالب اسمه post_macros بداخله ابحث عن هذا الكود
كود:
					<header class="message-attribution">
						<a href="{{ link('threads/post', $thread, {'post_id': $post.post_id}) }}" class="message-attribution-main u-concealed" rel="nofollow"><xf:date time="{$post.post_date}" /></a>
						<div class="message-attribution-opposite">
							<xf:if is="$post.isUnread()">
								<span class="message-newIndicator">{{ phrase('new') }}</span>
							</xf:if>
							<a href="{{ link('threads/post', $thread, {'post_id': $post.post_id}) }}" class="u-concealed" rel="nofollow">#{{ number($post.position + 1) }}</a>
						</div>
					</header>
استبداله بهذا
كود:
					<header class="message-attribution">
						<div class="message-attribution-opposite">
							<xf:if is="$post.isUnread()">
								<span class="message-newIndicator">{{ phrase('new') }}</span>
							</xf:if>
							<a href="{{ link('threads/post', $thread, {'post_id': $post.post_id}) }}" class="u-concealed" rel="nofollow">#{{ number($post.position + 1) }}</a>
						</div>
					</header>