Prohlížení tohoto vlákna:
1 Anonymní uživatelé
Re: www.sodan.cz |
||
---|---|---|
Expert
Členem od:
11:05 30.7.2006 Skupina:
Registrovaní uživatelé Příspěvky:
124
|
Ne,nepochopil. Mě osobně šlo o to, aby název podkategorie (v tvém případě třebas "snorchy") se mohla jmenovat " šnorchly / potápěčské brýle / potápěčské masky" a aby se vůči šírře bloku zalomila tak, aby nebyla první část odsazená a další části nikoli...
No nic, v tvém případě tu mezeru můžeš udělt 3 způsoby. Nejjednoduší, ale otravný= vložit před každý název mezeru ručně (tj. " ABC" atd. u všech. Tím se odsadí. Nebo zvětšit obrázeky cat_pointer_down.gif atd. o pár pixelů doprava tak, aby to tvořilo požadovanou mezeru. Nebo upravit kod pro zobrazení toho menu. Nejjednodušší varianta! V souboru "tpl_categories.php" najdi tento kód: $spacer = ''; // uncomment next line to add 1 space between image & text // $spacer .= ' '; a udělej přesně co tam je napsáno
Zasláno: 19:05 18.9.2006
|
|
_________________
Hallowed are the Ori! Zencart? Super shop, kterej se musí neustále dodělávat a ladit... |
||
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Guru
Členem od:
8:08 10.11.2005 Bydliště Prague
Skupina:
Registrovaní uživatelé Vývojáři Příspěvky:
1389
|
Nebo je ještě řešení napsat to Auto / Moto / Kolo a v boxu categorií při zobrazování jmen využí nahrazení znaku "/" na <br />...
Zasláno: 22:28 18.9.2006
|
|
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Nováček
Členem od:
20:46 28.8.2006 Skupina:
Registrovaní uživatelé Příspěvky:
11
|
nemuzu si pomoct, ale v tom souborz
u jak jsi napsal, tak ten kod neni napsanej. Mas tu samou verzi jakou mam ja?? Myslim tim tu verzi pred 1.3.5
Zasláno: 9:16 19.9.2006
|
|
_________________
ahoj jak to jde |
||
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Expert
Členem od:
11:05 30.7.2006 Skupina:
Registrovaní uživatelé Příspěvky:
124
|
Jasně, tuším že 1.3.0 nebo 1.3.2 to už teď nevím, ale hlavně doinstalován modul bettercategoris ver. 1.3.0 Celý soubor pak vypadá takto:
<?php /** * Side Box Template * * @package templateSystem * @copyright Copyright 2003-2006 Zen Cart Development Team * @copyright Portions Copyright 2003 osCommerce * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0 * @version $Id: tpl_categories.php 3157 2006-03-10 23:24:22Z drbyte $ * * BetterCategoriesEzInfo v1.3.0.2 added 2006-06-22 gilby */ $spacer = ''; // uncomment next line to add 1 space between image & text // $spacer .= ' '; $content = ""; $content .= '<div id="' . str_replace('_', '-', $box_id . 'Content') . '" class="sideBoxContent">' . "\n"; for ($i=0;$i<sizeof($box_categories_array);$i++) { switch(true) { // to make a specific category stand out define a new class in the stylesheet example: A.category-holiday // uncomment the select below and set the cPath=3 to the cPath= your_categories_id // many variations of this can be done // case ($box_categories_array[$i]['path'] == 'cPath=3'): // $new_style = 'category-holiday'; // break; case ($box_categories_array[$i]['top'] == 'true'): $new_style = 'category-top'; break; case ($box_categories_array[$i]['has_sub_cat']): $new_style = 'category-subs'; break; default: $new_style = 'category-products'; } if (zen_get_product_types_to_category($box_categories_array[$i]['path']) == '3' or ($box_categories_array[$i]['top'] != 'true' and SHOW_CATEGORIES_SUBCATEGORIES_ALWAYS != 1)) { // skip it this is for the document box } else { $content .= '<div class="betterCategories"><a class="' . $new_style . '" href="' . zen_href_link(FILENAME_DEFAULT, $box_categories_array[$i]['path']) . '">'; if ($box_categories_array[$i]['current']) { if ($box_categories_array[$i]['has_sub_cat']) { $content .= '<span class="category-subs-parent">'; $content .= cat_with_pointer($box_categories_array[$i]['name'], 'down', $spacer); $content .= '</span>'; } else { $content .= '<span class="category-subs-selected">'; $content .= cat_with_pointer($box_categories_array[$i]['name'], 'nosub', $spacer); $content .= '</span>'; } } else { if ($box_categories_array[$i]['has_sub_cat']) { $content .= cat_with_pointer($box_categories_array[$i]['name'], 'right', $spacer); } else { $content .= cat_with_pointer($box_categories_array[$i]['name'], 'nosub', $spacer); } } if ($box_categories_array[$i]['has_sub_cat']) { $content .= CATEGORIES_SEPARATOR; } //$content .= '</a>'; if (SHOW_COUNTS == 'true') { if ((CATEGORIES_COUNT_ZERO == '1' and $box_categories_array[$i]['count'] == 0) or $box_categories_array[$i]['count'] >= 1) { $content .= CATEGORIES_COUNT_PREFIX . $box_categories_array[$i]['count'] . CATEGORIES_COUNT_SUFFIX; } } $content .= '</a></div>'; } } if (SHOW_CATEGORIES_BOX_SPECIALS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true' or SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true' or SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') { // display a separator between categories and links if (SHOW_CATEGORIES_SEPARATOR_LINK == '1') { $content .= '<br />' . zen_draw_separator('pixel_silver.gif') . '<br />'; } if (SHOW_CATEGORIES_BOX_SPECIALS == 'true') { $show_this = $db->Execute("select s.products_id from " . TABLE_SPECIALS . " s where s.status= '1' limit 1"); if ($show_this->RecordCount() > 0) { $content .= '<div class="betterCategories"><a class="category-links" href="' . zen_href_link(FILENAME_SPECIALS) . '">'; $content .= "" . $spacer; $content .= CATEGORIES_BOX_HEADING_SPECIALS . '</a></div>'; } } if (SHOW_CATEGORIES_BOX_PRODUCTS_NEW == 'true') { // display limits $display_limit = zen_get_products_new_timelimit(); $show_this = $db->Execute("select p.products_id from " . TABLE_PRODUCTS . " p where p.products_status = '1' " . $display_limit . " limit 1"); if ($show_this->RecordCount() > 0) { $content .= '<div class="betterCategories"><a class="category-links" href="' . zen_href_link(FILENAME_PRODUCTS_NEW) . '">'; $content .= "" . $spacer; $content .= CATEGORIES_BOX_HEADING_WHATS_NEW . '</a></div>'; } } if (SHOW_CATEGORIES_BOX_FEATURED_PRODUCTS == 'true') { $show_this = $db->Execute("select products_id from " . TABLE_FEATURED . " where status= '1' limit 1"); if ($show_this->RecordCount() > 0) { $content .= '<div class="betterCategories"><a class="category-links" href="' . zen_href_link(FILENAME_FEATURED_PRODUCTS) . '">'; $content .= "" . $spacer; $content .= CATEGORIES_BOX_HEADING_FEATURED_PRODUCTS . '</a></div>'; } } if (SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') { $content .= '<div class="betterCategories"><a class="category-links" href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">'; $content .= "" . $spacer; $content .= CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a></div>'; } } //this is the function that inserts the 'pointer' (or 'disclosure triangle') //before the name of the category, in the 'Categories' sidebox. //$categoryName should be a string as contained in //$box_categories_array[$i]['name'] above, which already includes //the category name with all the necessary subcategory indents up front, //as specified by the user in the Admin Panel. //$categoryType will be either 'down', 'right' or 'nosub', which //specifies which picture appears next to the category name: function cat_with_pointer( $categoryName, $categoryType, $spacer) { //picking the appropriate pointer image: switch ($categoryType) { case "down": $pointer = ""; break; case "right": $pointer = ""; break; default: $pointer = ""; } $pointer .= $spacer; switch (true) { //if the user has left the 'subcategories indent' empty, or //if this is a 'top-level' category (there are no subcategory indents), //then, we just prepend the pointer image: case (CATEGORIES_SUBCATEGORIES_INDENT == ''): case (strpos($categoryName, CATEGORIES_SUBCATEGORIES_INDENT) !== 0): $pointer .= $categoryName; break; default: //removing the subcategory indents from the beginning of the name: $indentLength = strlen(CATEGORIES_SUBCATEGORIES_INDENT); $pos = 0; for ($i = 0; $pos === 0; $i++) { $categoryName = substr($categoryName, $indentLength); $pos = strpos($categoryName, CATEGORIES_SUBCATEGORIES_INDENT); } //placing the pointer image: $pointer .= $categoryName; //adding back the subcategory indents to the beginning of the name: for (;$i > 0; $i--) { $pointer = CATEGORIES_SUBCATEGORIES_INDENT . $pointer; } } return $pointer; } $content .= '</div>'; ?> Heh, tedy mnou trochu poupravený, ale už si nepamatuju, jaké změny jsem dělal, jen to, že jsem vypnul ty obrázky...
Zasláno: 14:22 19.9.2006
|
|
_________________
Hallowed are the Ori! Zencart? Super shop, kterej se musí neustále dodělávat a ladit... |
||
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Expert
Členem od:
10:18 28.10.2006 Bydliště Turnov
Skupina:
Registrovaní uživatelé Příspěvky:
104
|
HanZ prosím, jak jsi dostal pryč z registrace zákazníka to Adresa 2 ?
Nějak si s tím nevím rady. Zrovna tak mi připadá nesmysl chtít u nás po zákazníkovi jestli je muž nebo žena. Potřeboval bych poradit, jak se těchto zbytečně vyzvídacích dotazů zbavit. Díky moc za radu.
Zasláno: 16:09 11.11.2006
|
|
_________________
www.auto-vyfuky.cz |
||
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Guru
Členem od:
8:08 10.11.2005 Bydliště Prague
Skupina:
Registrovaní uživatelé Vývojáři Příspěvky:
1389
|
Toto se dá nastavit v adminu. Configuration - Customers...
Zasláno: 16:53 11.11.2006
|
|
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Expert
Členem od:
10:18 28.10.2006 Bydliště Turnov
Skupina:
Registrovaní uživatelé Příspěvky:
104
|
Jo díky, teď jsem na to narazil: Customer Details...
Zasláno: 17:23 11.11.2006
|
|
_________________
www.auto-vyfuky.cz |
||
Přenos |
Re: www.sodan.cz |
||
---|---|---|
Expert
Členem od:
11:05 30.7.2006 Skupina:
Registrovaní uživatelé Příspěvky:
124
|
Zdar! Opět bych prosil konstruktivní kritiku. Komplet nově předělaný celý shop...
O nesrovnalosti s popisem kategori v IE vím a snažím se řešit.
Zasláno: 9:25 17.1.2007
|
|
_________________
Hallowed are the Ori! Zencart? Super shop, kterej se musí neustále dodělávat a ladit... |
||
Přenos |
Můžete prohlížet témata.
Nemůžete zakládat nová témata.
Nemůžete odpovídat na příspěvky.
Nemůžete editovat Vaše příspěvky.
Nemůžete mazat Vaše příspěvky.
Nemůžete přidávat nové ankety.
Můžete hlasovat v anketách.
Nemůžete připojovat soubory k příspěvkům.
Nemůžete přispívat bez schválení.