cenda89 Posted December 30, 2014 Share Posted December 30, 2014 Ahoj, prosím o radu ohledně obrázků kategorií. V PS16 je obrázek kategorie [category_default] zároveň i miniatura kategorie [medium_default] - toto je z mého pohledu nesmysl. Potřeboval bych upravit to, aby obrázek kategorie byl pouze jako "header" kategorie (ukázka). A obrázek nahrávaný jako miniatura byl obrázkem miniatury (ukázka). Nyní jsou miniatury použity v TOPMENU - zbytečnost. Tohle řešení je amerika a nesmysl, potřebuju tuto funkci počeštit. Mám připravené hezké headery, ale jako miniatura kategorie se nehodí. Snad jsem se vyjádřil dobře a Děkuji za názory. Link to comment Share on other sites More sharing options...
LuckyModule Posted January 10, 2015 Share Posted January 10, 2015 Ahoj, prosím o radu ohledně obrázků kategorií. V PS16 je obrázek kategorie [category_default] zároveň i miniatura kategorie [medium_default] - toto je z mého pohledu nesmysl. Potřeboval bych upravit to, aby obrázek kategorie byl pouze jako "header" kategorie (ukázka). A obrázek nahrávaný jako miniatura byl obrázkem miniatury (ukázka). Nyní jsou miniatury použity v TOPMENU - zbytečnost. Tohle řešení je amerika a nesmysl, potřebuju tuto funkci počeštit. Mám připravené hezké headery, ale jako miniatura kategorie se nehodí. Snad jsem se vyjádřil dobře a Děkuji za názory. Ahoj, Soubor - category.tpl Nahradit tento kód: <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> Tento kód: <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'category_default')|escape:'html':'UTF-8'}" alt="" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-category_default.jpg" alt="" /> {/if} </a> Link to comment Share on other sites More sharing options...
cenda89 Posted January 10, 2015 Author Share Posted January 10, 2015 Ahoj, Soubor - category.tpl Nahradit tento kód: <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-medium_default.jpg" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> Tento kód: <a href="{$link->getCategoryLink($subcategory.id_category, $subcategory.link_rewrite)|escape:'html':'UTF-8'}" title="{$subcategory.name|escape:'html':'UTF-8'}" class="img"> {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'category_default')|escape:'html':'UTF-8'}" alt="" /> {else} <img class="replace-2x" src="{$img_cat_dir}default-category_default.jpg" alt="" /> {/if} </a> Děkuji za odpověď, ale navrhované řešení mi nefunguje. U miniatur subkategorií jsou stále jejich header obrázky. Link to comment Share on other sites More sharing options...
tromas Posted March 21, 2015 Share Posted March 21, 2015 (edited) Mám stejný problém a navrhované řešení mi také nefunguje... Vím, že je to úprava řádku src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, 'medium_default')|escape:'html':'UTF-8'}" v souboru category.tpl, ale nemohu na to přijít... Edited March 21, 2015 by tromas (see edit history) Link to comment Share on other sites More sharing options...
tromas Posted March 24, 2015 Share Posted March 24, 2015 (edited) V category.tpl ve tvém theme změň medium_default na 0_thumb na řádce (84) {if $subcategory.id_image} <img class="replace-2x" src="{$link->getCatImageLink($subcategory.link_rewrite, $subcategory.id_image, '0_thumb')|escape:'html':'UTF-8'}" alt="" width="{$mediumSize.width}" height="{$mediumSize.height}" /> Edited March 24, 2015 by tromas (see edit history) Link to comment Share on other sites More sharing options...
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