92dziki Posted April 8, 2015 Share Posted April 8, 2015 Witam. Chcę uruchomić sklep na szablonie Leo Fashion Store. http://dakimakura24.com/ Mam niestety problemy z konfiguracją. Chciałbym usunąć z szablonu kilka rzeczy zaznaczonych na załączonych screenach. 1. Odnośnik do listy życzeń w górnym pasku. 2. Cenę, quick view, dodaj do koszyka oraz gwiazdki po najechaniu na zdjęcie produktu w kategorii oraz na stronie głównej. 3. Podkategorie w kategorii. Proszę o wskazówki gdzie tego szukać. Pozdrawiam. Link to comment Share on other sites More sharing options...
0 endriu107 Posted April 9, 2015 Share Posted April 9, 2015 To w innym pliku sprawdź product-item.tpl 1 Link to comment Share on other sites More sharing options...
0 endriu107 Posted April 9, 2015 Share Posted April 9, 2015 1. jeśli w ogóle nie chcesz tego modułu to go po prostu odinstaluj. 2. najlepiej by było to za komentować w pliku product-list.tpl (prawdopodobnie w tym pliku) 3. plik category.tpl Być może to będą inne pliki ale standardowo to są takie. Link to comment Share on other sites More sharing options...
0 krzysiek_web Posted April 9, 2015 Share Posted April 9, 2015 1. Wyłącza się to także w konfiguratorze motywu w modułach. Reszta jak wyżej opisane. Link to comment Share on other sites More sharing options...
0 92dziki Posted April 9, 2015 Author Share Posted April 9, 2015 Witam. Z punktem 3 poradziłem sobie bez problemu ale z resztą niestety ciągle kłopot. 1. Wyłączyłem moduł wishlist ale odnośnik na górze strony nadal pozostał. Jest on częścią modułu blockuserinfo którego niestety nie potrafię wyedytować. 2. W product-list.tpl nie potrafie znaleźć fragmentu odpowiedzialnego za wskazane elementy. Poniżej product-list.tpl Pozdrawiam. {* * 2007-2014 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2014 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA *} {include file="$tpl_dir./layout/setting.tpl"} {if isset($products) && $products} {*define numbers of product per line in other page for desktop*} {if isset($class)} {*only display grid mode when include from other module*} {assign var="LISTING_GRIG_MODE" value="grid" scope="global"} {assign var='nbItemsPerLine' value=$LISTING_PRODUCT_COLUMN_MODULE} {if $LISTING_PRODUCT_COLUMN_MODULE=="5"} {assign var="colValue" value="col-xs-{12/$LISTING_PRODUCT_MOBILE} col-sm-{12/$LISTING_PRODUCT_TABLET} col-md-2-4 col-sp-12" scope="global"} {else} {assign var="colValue" value="col-sp-12 col-xs-{12/$LISTING_PRODUCT_MOBILE} col-sm-{12/$LISTING_PRODUCT_TABLET} col-md-{12/$LISTING_PRODUCT_COLUMN_MODULE}" scope="global"} {/if} {else} {assign var='nbItemsPerLine' value=$LISTING_PRODUCT_COLUMN} {/if} {assign var='nbItemsPerLineTablet' value=$LISTING_PRODUCT_TABLET} {assign var='nbItemsPerLineMobile' value=$LISTING_PRODUCT_MOBILE} {*define numbers of product per line in other page for tablet*} {assign var='nbLi' value=$products|@count} {math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines} {math equation="nbLi/nbItemsPerLineTablet" nbLi=$nbLi nbItemsPerLineTablet=$nbItemsPerLineTablet assign=nbLinesTablet} <!-- Products list --> <div{if isset($id) && $id} id="{$id}"{/if} class="product_list {$LISTING_GRIG_MODE} row {if isset($class) && $class} {$class}{/if}"> {foreach from=$products item=product name=products} {math equation="(total%perLine)" total=$smarty.foreach.products.total perLine=$nbItemsPerLine assign=totModulo} {math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineTablet assign=totModuloTablet} {math equation="(total%perLineT)" total=$smarty.foreach.products.total perLineT=$nbItemsPerLineMobile assign=totModuloMobile} {if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if} {if $totModuloTablet == 0}{assign var='totModuloTablet' value=$nbItemsPerLineTablet}{/if} {if $totModuloMobile == 0}{assign var='totModuloMobile' value=$nbItemsPerLineMobile}{/if} <div class="ajax_block_product col-sp-12 {$colValue}{if $smarty.foreach.products.iteration%$nbItemsPerLine == 0} last-in-line {elseif $smarty.foreach.products.iteration%$nbItemsPerLine == 1} first-in-line{/if} {if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModulo)} last-line{/if} {if $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 0} last-item-of-tablet-line {elseif $smarty.foreach.products.iteration%$nbItemsPerLineTablet == 1} first-item-of-tablet-line{/if} {if $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 0} last-item-of-mobile-line {elseif $smarty.foreach.products.iteration%$nbItemsPerLineMobile == 1} first-item-of-mobile-line{/if} {if $smarty.foreach.products.iteration > ($smarty.foreach.products.total - $totModuloMobile)} last-mobile-line{/if}"> {include file="$tpl_dir./product-item.tpl" callFromModule=isset($class)} </div> {/foreach} </div> {addJsDefL name=min_item}{l s='Please select at least one product' js=1}{/addJsDefL} {addJsDefL name=max_item}{l s='You cannot add more than %d product(s) to the product comparison' sprintf=$comparator_max_item js=1}{/addJsDefL} {addJsDef comparator_max_item=$comparator_max_item} {addJsDef comparedProductsIds=$compared_products} {/if} Link to comment Share on other sites More sharing options...
0 92dziki Posted April 9, 2015 Author Share Posted April 9, 2015 Rzeczywiście rozwiązanie znalazłem w pliku product-item.tpl . Odnośnik do listy życzeń usunąłem w pliku nav.tpl modułu blockuserinfo. Serdecznie dziękuje za pomoc. Link to comment Share on other sites More sharing options...
0 krzysiek_web Posted April 9, 2015 Share Posted April 9, 2015 1. Nie musiałeś tego usuwać z kodu. Moduły > Temat panelu sterowania Leo (polskie tłumaczenie )> Włącz Lista życzeń link (lub wyłącz). Link to comment Share on other sites More sharing options...
0 92dziki Posted April 10, 2015 Author Share Posted April 10, 2015 Witam. Mam jeszcze jeden problem i proszę o pomoc. Domyślnie miałem w sklepie waluty dolar i euro ale ręcznie dodałem PLN. Przy użyciu PayPala można płacić w każdej walucie ale przy płatności przelewem PLN jest niedostępne. I tu moje pytanie. Jak dodać PLN do modułu Bank Wire? W konfiguracji Bank Wire nie widzę tej opcji. Link to comment Share on other sites More sharing options...
0 endriu107 Posted April 10, 2015 Share Posted April 10, 2015 Wejdź w zakładkę moduły > płatność i sprawdź czy masz wszędzie włączona walutę. Link to comment Share on other sites More sharing options...
0 92dziki Posted April 10, 2015 Author Share Posted April 10, 2015 Rzeczywiście było odznaczone. Dziękuje bardzo za pomoc. Link to comment Share on other sites More sharing options...
0 endriu107 Posted April 10, 2015 Share Posted April 10, 2015 Możesz oznaczyć ten temat jako rozwiązany zaznaczając najlepsza odpowiedź, pozwoli to innym użytkownikom forum na szybsze odnalezienie tematu z podanym rozwiązaniem. Link to comment Share on other sites More sharing options...
Question
92dziki
Witam.
Chcę uruchomić sklep na szablonie Leo Fashion Store.
http://dakimakura24.com/
Mam niestety problemy z konfiguracją.
Chciałbym usunąć z szablonu kilka rzeczy zaznaczonych na załączonych screenach.
1. Odnośnik do listy życzeń w górnym pasku.
2. Cenę, quick view, dodaj do koszyka oraz gwiazdki po najechaniu na zdjęcie produktu w kategorii oraz na stronie głównej.
3. Podkategorie w kategorii.
Proszę o wskazówki gdzie tego szukać.
Pozdrawiam.
Link to comment
Share on other sites
10 answers to this question
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now