Polskie wsparcie PrestaShop
PrestaShop => Dla początkujących => Wątek zaczęty przez: adi890 w Sierpień 25, 2013, 11:53:41 pm
-
Witam mam problem z dodaniezdjęcia do podkategori.Tzn dodanie zdjecie przez panel administacyjny przy tworzenie kategori czy podkategorii nie działa .Więc nzalazłem sposób na dodawanie zdjec za pomoca ftp .I przy kategoriach działało ..Ale przy podkategoriach nie działa sprawdzam lokalizacje zdjecia a wchodząc na serwer nie ma takiego folderu .Co zrobić .Proszę o pomoc.
Link do jakiejś podkategorii: [size=78%]http://d.hosting24.pl/strona/7240-linki (http://d.hosting24.pl/strona/7240-linki)[/size]
-
korzystasz z leo zobacz czy dla podkategorii masz dobrze ustawione odnośniki w zakładce zdjęcia "w normalnym temacie jest to "medium_default"
-
Czy mógłbyś dokładnie napisać co mam zrobić bo jak napisałem się te rozumiem tego za bardzo
-
w pliku tematu category.tpl znajdź / zamień linię img src...
<div id="subcategories">
<h3>{l s='Subcategories'}</h3>
<ul class="inline_list">
{foreach from=$subcategories item=subcategory}
<li class="clearfix">
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img">
{if $subcategory.id_image}
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
{else}
<img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
{/if}
</a>
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'htmlall':'UTF-8'}</a>
{if $subcategory.description}
<p class="cat_desc">{$subcategory.description}</p>
{/if}
</li>
{/foreach}
</ul>
<br class="clear"/>
</div>
-
no ok a mógłbyś mi odrazu to przerobić bo nie weim jak to zrobić.Bardzo prosze o pomoc ...
{*
* 2007-2012 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, pleascategory-product
e send an email
* to license@prestashop.com 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 <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 6844 $
* @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./breadcrumb.tpl"}
{include file="$tpl_dir./errors.tpl"}
{if isset($category)}
{if $category->id AND $category->active}
<div class="category-product">
<!--category-product-name-->
<div class="resumecat">
<h1 class="h1resume">
{strip}
{$category->name|escape:'htmlall':'UTF-8'}
{if isset($categoryNameComplement)}
{$categoryNameComplement|escape:'htmlall':'UTF-8'}
{/if}
{/strip}
<span class="category-product-count">{include file="$tpl_dir./category-count.tpl"}</span>
</h1>
<>
<!-- category-des-->
{if $scenes || $category->description || $category->id_image}
<div class="content_scene_cat">
{if $scenes}
<!-- Scenes -->
{include file="$tpl_dir./scenes.tpl" scenes=$scenes}
{else}
<!-- Category image -->
{if $category->id_image}
<div class="align_center">
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_leoconv')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" />
<>
{/if}
{/if}
{if $category->description}
<div class="cat_desc">
{if strlen($category->description) > 120}
<p id="category_description_short">{$category->description|truncate:120}</p>
<p id="category_description_full" style="display:none">{$category->description}</p>
<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>
{else}
<p>{$category->description}</p>
{/if}
<>
{/if}
<>
{/if}
<!-- Subcategories -->
{if isset($subcategories)}
<div id="subcategories">
<ul class="inline_list">
{foreach from=$subcategories item=subcategory}
<li class="clearfix">
<p class="product_img_link">
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img">
{if $subcategory.id_image}
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'home_leoconv')}" alt="" />
{else}
<img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
{/if}
</a>
</p>
<h3><a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'htmlall':'UTF-8'}</a></h3>
{if $subcategory.description}
<p class="cat_desc">{$subcategory.description|strip_tags|truncate:100:'...'}</p>
{/if}
<span class="button">{l s='Shop now'}</span>
</li>
{/foreach}
</ul>
<br class="clear"/>
<>
{/if}
<!-- content-sort-->
{if $products}
<div class="content_sortPagiBar">
<div class="sortPagiBar clearfix">
{l s='View as :'}
<span id="grid_button_id" class="active"></span>
<span id="list_button_id"></span>
{include file="./product-compare.tpl"}
{include file="./product-sort.tpl"}
{include file="./nbr-product-page.tpl"}
{include file="./pagination.tpl"}
<>
<>
{/if}
<>
{if $products}
{include file="./product-list.tpl" products=$products}
<div class="content_sortPagiBar leo-product-bottom" >
<div class="sortPagiBar clearfix">
<div class="leo-page">
{include file="./product-compare.tpl"}
{include file="./product-sort.tpl"}
{include file="./nbr-product-page.tpl"}
<>
{include file="./pagination.tpl"}
<>
<>
{/if}
{/if}
{elseif $category->id}
<p class="warning">{l s='This category is currently unavailable.'}</p>
{/if}
-
{*
* 2007-2012 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, pleascategory-product
e send an email
* to license@prestashop.com 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 <contact@prestashop.com>
* @copyright 2007-2012 PrestaShop SA
* @version Release: $Revision: 6844 $
* @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./breadcrumb.tpl"}
{include file="$tpl_dir./errors.tpl"}
{if isset($category)}
{if $category->id AND $category->active}
<div class="category-product">
<!--category-product-name-->
<div class="resumecat">
<h1 class="h1resume">
{strip}
{$category->name|escape:'htmlall':'UTF-8'}
{if isset($categoryNameComplement)}
{$categoryNameComplement|escape:'htmlall':'UTF-8'}
{/if}
{/strip}
<span class="category-product-count">{include file="$tpl_dir./category-count.tpl"}</span>
</h1>
<>
<!-- category-des-->
{if $scenes || $category->description || $category->id_image}
<div class="content_scene_cat">
{if $scenes}
<!-- Scenes -->
{include file="$tpl_dir./scenes.tpl" scenes=$scenes}
{else}
<!-- Category image -->
{if $category->id_image}
<div class="align_center">
<img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_leoconv')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" />
<>
{/if}
{/if}
{if $category->description}
<div class="cat_desc">
{if strlen($category->description) > 120}
<p id="category_description_short">{$category->description|truncate:120}</p>
<p id="category_description_full" style="display:none">{$category->description}</p>
<a href="#" onclick="$('#category_description_short').hide(); $('#category_description_full').show(); $(this).hide(); return false;" class="lnk_more">{l s='More'}</a>
{else}
<p>{$category->description}</p>
{/if}
<>
{/if}
<>
{/if}
<!-- Subcategories -->
{if isset($subcategories)}
<div id="subcategories">
<ul class="inline_list">
{foreach from=$subcategories item=subcategory}
<li class="clearfix">
<p class="product_img_link">
<a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" title="{$subcategory.name|escape:'htmlall':'UTF-8'}" class="img">
{if $subcategory.id_image}
<img src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')}" alt="" />
{else}
<img src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" />
{/if}
</a>
</p>
<h3><a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'htmlall':'UTF-8'}" class="cat_name">{$subcategory.name|escape:'htmlall':'UTF-8'}</a></h3>
{if $subcategory.description}
<p class="cat_desc">{$subcategory.description|strip_tags|truncate:100:'...'}</p>
{/if}
<span class="button">{l s='Shop now'}</span>
</li>
{/foreach}
</ul>
<br class="clear"/>
<>
{/if}
<!-- content-sort-->
{if $products}
<div class="content_sortPagiBar">
<div class="sortPagiBar clearfix">
{l s='View as :'}
<span id="grid_button_id" class="active"></span>
<span id="list_button_id"></span>
{include file="./product-compare.tpl"}
{include file="./product-sort.tpl"}
{include file="./nbr-product-page.tpl"}
{include file="./pagination.tpl"}
<>
<>
{/if}
<>
{if $products}
{include file="./product-list.tpl" products=$products}
<div class="content_sortPagiBar leo-product-bottom" >
<div class="sortPagiBar clearfix">
<div class="leo-page">
{include file="./product-compare.tpl"}
{include file="./product-sort.tpl"}
{include file="./nbr-product-page.tpl"}
<>
{include file="./pagination.tpl"}
<>
<>
{/if}
{/if}
{elseif $category->id}
<p class="warning">{l s='This category is currently unavailable.'}</p>
{/if}
-
A mógłbyś coś innego poradzić bo to co mi wysąłłeś rozwala mi tą podkategorie
-
wymaga to zmiany css lub edycji samego pliku :)