- Регистрация
- 10 Май 2007
- Сообщения
- 1.332
- Реакции
- 1.237
- Автор темы
- Заблокирован
- #1
Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
чтобы конкретно сказать надо видеть ваш сайт вот например для дефолтного шаблона код отвечающий за подключение скрипта увеличения картинкиЯ прошу прощения если возможно поподробнее....
<script type="text/javascript" src="data/default/highslide.packed.js"></script>
<script type="text/javascript">
<!--
hs.graphicsDir = 'data/default/';
hs.outlineType = 'rounded';
hs.showCredits = false;
hs.loadingOpacity = 1;
hs.lang.restoreTitle = 'Нажмите на картинку чтобы закрыть окно';
hs.lang.loadingText = 'Загрузка...';
hs.lang.loadingTitle = 'Отменить загрузку';
hs.lang.focusTitle = 'Нажмите для возврата к картинке';
hs.lang.fullExpandTitle = 'Развернуть во всю величину';
//-->
</script>
<a href="data/big/pb_314_0.jpg" class="highslide" onclick="return hs.expand(this)"><img src="data/medium/pm_314_0.jpg" alt="" id="pb_314_0.jpg"></a>
Можете ткнуть, где копать и, если есть возможность - хотя бы приблизительное решение или какие-нибудь примеры.
Спасибо!
товар81 - тоже товар, не категорияЕсли товар81- это категория, то блок с категорией 8 - дубль big_category_tree.tpl.html но с запретом всех id кроме категория8, товар81...товар84, справа big_category_tree.tpl.html с запретом отображения категория8, товар81...товар84 ($big_categories_tree[h].categoryID != 8 & $big_categories_tree[h].categoryID != 81 & $big_categories_tree[h].categoryID != 82 и тд)
товар81 - тоже товар, не категория
Но направление движения понял, спасибо!
Теперь возникает следующий вопрос - как эти два блока (big_category_tree.tpl.html с ID=8 и big_category_tree.tpl.html с ID !=8) вставить в центральную часть в виде двух столбцов, т.к. штатно у блоков есть положения слева, справа, сверху и снизу...
Видимо, как-то в таблицу, но вот в какую и где?
подскажите где найти модуль приема оплаты приват24?
Сделал так:Верстаешь таблицу, вставляешь этот код куда тебе нужно (в index.tpl.html к примеру)
и в нужных местах {include file="blocks/big_category_tree.tpl.html"}
{include file="blocks/big_category_tree2.tpl.html"} и условия вывода таблицы с этим кодом только к примеру на главной (код вывода непомню, что то типа {if $home...} {else}{/if}
<table cellspacing="0" cellpadding="0" width="100%">
<tr>
<td width="33%" valign="top" align="left">{include file="blocks/category_center11.tpl.html"} </td>
<td width="66%" valign="top" align="left">{include file="blocks/category_center11no.tpl.html"} </td>
</tr>
</table>
{if $big_categories_tree && $big_categories_tree_count>0}
<table cellspacing="0" cellpadding="0" width="100%">
{counter name='s1' start=-1 skip=1 print=false assign='select_counter_var'}
{section name=h1 loop=$big_categories_tree}
{if $big_categories_tree[h1].categoryID == 8}
...
{/if}
{if $big_categories_tree[h1].categoryID != 8}
...
{/if}
Для раскрытия категории (вывода всех товаров выбранной категории) прямо в дереве, а не в отдельном блоке, сделал следующее:Если товар81- это категория, то блок с категорией 8 - дубль big_category_tree.tpl.html но с запретом всех id кроме категория8, товар81...товар84, справа big_category_tree.tpl.html с запретом отображения категория8, товар81...товар84 ($big_categories_tree[h].categoryID != 8 & $big_categories_tree[h].categoryID != 81 & $big_categories_tree[h].categoryID != 82 и тд)
<td valign="top" align="left"><a href="{if $smarty.const.CONF_MOD_REWRITE eq 1}category_{$big_categories_tree[h1].categoryID}.html{else}index.php?categoryID={$big_categories_tree[h1].categoryID}{/if}" class="arc cl18">{$big_categories_tree[h1].name}</a>{if $smarty.const.CONF_SHOW_COUNTPROD eq 1} <span class="cl18">({$big_categories_tree[h1].products_count})</span>{/if}
{if $smarty.server.REQUEST_URI=="/category_2.html" & $big_categories_tree[h1].categoryID == 2} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_3.html" & $big_categories_tree[h1].categoryID == 3} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_4.html" & $big_categories_tree[h1].categoryID == 4} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_5.html" & $big_categories_tree[h1].categoryID == 5} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_6.html" & $big_categories_tree[h1].categoryID == 6} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_7.html" & $big_categories_tree[h1].categoryID == 7} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_8.html" & $big_categories_tree[h1].categoryID == 8} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_9.html" & $big_categories_tree[h1].categoryID == 9} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_10.html" & $big_categories_tree[h1].categoryID == 10} {include file="category.tpl.html"} {/if}
{if $smarty.server.REQUEST_URI=="/category_11.html" & $big_categories_tree[h1].categoryID == 11} {include file="category.tpl.html"} {/if}