Помогите новичку

Статус
В этой теме нельзя размещать новые ответы.

Volk00791

Создатель
Регистрация
8 Фев 2008
Сообщения
18
Реакции
1
Нужно сделать чтобы где каталог(не основной который отображается посреди страницы, а рядышком отображается), в общем чтобы рядом с каждой категорией выводился свой значок, насколько копался там же 1 шаблон для вывода любой категории, как реализовать, подскажите, очень срочно
 
по первому вопросу - используй поиск. это уже рассказывали как сделать.
по второму - за выпрашивание ссылок из-под зайда тут, вообще-то, банят.
 
:tcl: Вопрос исчерпан
Вопрос 2
Может и нубский вопрос, но всё таки поиск по форумам у меня хромает:ah:. В общем как удалить оценку товара(сам модуль) и обсуждение товара(аналогично))))
 
  • Заблокирован
  • #5
:tcl: Вопрос исчерпан
Вопрос 2
Может и нубский вопрос, но всё таки поиск по форумам у меня хромает:ah:. В общем как удалить оценку товара(сам модуль) и обсуждение товара(аналогично))))

Чтоб снести оценку товара, открой файл \templates\frontend\tmpl52\product_detailed.tpl.html и удали этот кусок кода

PHP:
{if $product_info.customer_votes > 0} {* rating *}
						<p>

						<table border="0" cellspacing="0" cellpadding="1">
						<tr>
						{section name=i loop=5}
							<td valign="middle" align="center">
							{if $smarty.section.i.index<$product_info.customers_rating}
								<img src="images/tmpl10_redstar.gif">
							{else}
								<img src="images/tmpl10_blackstar.gif">
							{/if}
							</td>
						{/section}
						</tr><tr>
							<td colspan=5 align=center>({$smarty.const.VOTES_FOR_ITEM_STRING}: {$product_info.customer_votes})</td>
						</tr>
						</table>

						{/if}


И


PHP:
<p><Table><tr><td align=center>
							<form name=VotingForm action='index.php' method=GET>
								<table border=0 cellspacing=1 cellpadding=2 bgcolor="#{$smarty.const.CONF_MIDDLE_COLOR}">
									<tr>
										<td align=center bgcolor="#{$smarty.const.CONF_DARK_COLOR}">{$smarty.const.VOTING_FOR_ITEM_TITLE}</td>
									</tr>
									<tr>
										<td>
											<input type="radio" name="mark" value="5" checked>{$smarty.const.MARK_EXCELLENT}<br>
											<input type="radio" name="mark" value="3.8">{$smarty.const.MARK_GOOD}<br>
											<input type="radio" name="mark" value="2.5">{$smarty.const.MARK_AVERAGE}<br>
											<input type="radio" name="mark" value="1">{$smarty.const.MARK_POOR}<br>
											<input type="radio" name="mark" value="0.1">{$smarty.const.MARK_PUNY}
										</td>
									</tr>
								</table>

								<br>
								<input type="hidden" name="productID" value="{$product_info.productID}">
								<input type="hidden" name="vote" value="yes">
								<input type="submit" value="{$smarty.const.VOTE_BUTTON}">
							</form>
						</Table>

Затем открой файл \templates\frontend\tmpl10\product_brief.tpl.html и удали этот кусок кода:

PHP:
{if $product_info.customer_votes > 0} {* rating *}
								<table border="0" cellspacing="0" cellpadding="1">
								<tr>
								{section name=i loop=5}
									<td>
									{if $smarty.section.i.index<$product_info.customers_rating}
										<img src="images/tmpl10_redstar.gif">
									{else}
										<img src="images/tmpl10_blackstar.gif">
									{/if}
									</td>
								{/section}
									<td width=100>&nbsp;({$smarty.const.VOTES_FOR_ITEM_STRING}: {$product_info.customer_votes})</td>
								</tr>
								</table>
		{/if}

Чтоб снести обсуждения, открой файл \templates\frontend\tmpl52\product_detailed.tpl.html и удали этот кусок кода:

PHP:
<p>
						<a href="index.php?productID={$product_info.productID}&discuss=yes">{$smarty.const.DISCUSS_ITEM_LINK}</a> <br>
						({$product_reviews_count} {$smarty.const.POSTS_FOR_ITEM_STRING})

и

PHP:
<tr>
     <td valign=top>
						{if $product_info.description ne ""}<div style="width: 400">{$product_info.description}</div>{/if}
					</td>
				</tr>

и

PHP:
<tr>
		<td colspan=2>
			{if $product_related_number > 0}<hr size="1" width="400" align="left">{/if}
			<p>
				<a name="inquiry"></a>
				{if $sent eq NULL}

				<h4>{$smarty.const.STRING_FEEDBACK_PRODUCT_HEADER|replace:"[product_name]":$product_info.name}</h4>

				<p>{$smarty.const.STRING_FEEDBACK_PRODUCT_DESCRIPTION}</font>

				{if $error ne NULL}
				<p><b><font color=red>{$smarty.const.FEEDBACK_ERROR_FILL_IN_FORM}</font></b>
				{/if}

				<p>
				<form name="form1" method="post" action="index.php#inquiry">
				{$smarty.const.FEEDBACK_CUSTOMER_NAME}:<br>
				<input name="customer_name" type="text" size="35" value="{$customer_name|replace:"\"":"&quot;"}"><br>

				{$smarty.const.CUSTOMER_EMAIL}<br>
				<input name="customer_email" type="text" size="35" value="{$customer_email|replace:"\"":"&quot;"}">

				<p>
				<input name="message_subject" type="hidden" value="{$product_info.name|replace:"\"":"&quot;"}">

				<p>{$smarty.const.STRING_FEEDBACK_PRODUCT_INQUIRY_EXPLANATION} {$product_info.name}:<br>
				<textarea name="message_text" cols="40" rows="10">{$message_text|replace:"<":"&lt;"}</textarea>

				<p>
				<input type="submit" value="OK">
				<input type="hidden" name="request_information" value="yes">
				<input type="hidden" name="productID" value="{$product_info.productID}">
				</p>

				</form>

				{else}

				<p>
				<b><font class=faq color=blue>{$smarty.const.FEEDBACK_SENT_SUCCESSFULLY}</font></b>

				{/if}
		</td>
	  </tr>


С ТЕБЯ 5 БАКСОВ...
 
Спасибо, а вместо 5 баксов лучше пивка попить после зарплаты
 
Статус
В этой теме нельзя размещать новые ответы.
Назад
Сверху