Jump to content

cara_ionutz

Members
  • Posts

    16
  • Joined

  • Last visited

cara_ionutz's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. If i have 2 color black with size xs,s and white with m,l , as you know when i select black apear all xs,s,m,l but m,l unavailable. So if i can do that i request on my lasts post i will avoid this issue. Thank you
  2. Yes i know that but i want to have different url . Like example before. I want this because i want to avoid the issue with available attributes combinations. Thank you
  3. If i have 2 color black and white for one product and im on the black product page and i have the option for selecting color and when i select the white color i want to go on the white color product page. Its there a module for doing this? Here its an example http://www.shoes.com/en-US/Product/EC1286810-5164092/adidas/Black_Red_White/Men's+P+Absolado+TRX+FG.aspx Thank you
  4. hello check attribute wizard pro module maybe will help you
  5. search for this in your css files from themes folder body#category #subcategories li { height: 136px; margin-right: 3px; width: 108px; } and modify the height value try 30px instead 136px. in attach i use 30px
  6. I use this on my blockmyaccountfooter.tpl(modules/blockmyaccountfooter) i add this code here: <div class="block myaccount"> <h4><a class="various" data-fancybox-type="iframe" href="http://yoursite/authentication.php?content_only=1">My Account</a></h4> <script type="text/javascript"> $(document).ready(function() { $(".various").fancybox({ maxWidth : 800, maxHeight : 600, fitToView : false, width : '70%', height : '70%', autoSize : false, closeClick : false, openEffect : 'none', closeEffect : 'none' }); }); </script> then in classess/FrontController.php you should edit replace global$cookie with this code: global $cookie; Tools::addCSS(_THEME_CSS_DIR_.'global.css', 'all'); /*am adaugat*/ Tools::addCSS(_PS_CSS_DIR_.'jquery.fancybox-1.3.4.css'); /**/ Tools::addJS(array(_PS_JS_DIR_.'jquery/jquery-1.4.4.min.js', _PS_JS_DIR_.'jquery/jquery.easing.1.3.js', _PS_JS_DIR_.'tools.js', /*am adaugat*/ _PS_JS_DIR_.'jquery/jquery.fancybox-1.3.4.js' /**/ )); if (Tools::isSubmit('live_edit') AND Tools::getValue('ad') AND (Tools::getValue('liveToken') == sha1(Tools::getValue('ad')._COOKIE_KEY_))) { Tools::addJS(array( _PS_JS_DIR_.'jquery/jquery-ui-1.8.10.custom.min.js', _PS_JS_DIR_.'jquery/jquery.fancybox-1.3.4.js', _PS_JS_DIR_.'hookLiveEdit.js') ); Tools::addCSS(_PS_CSS_DIR_.'jquery.fancybox-1.3.4.css'); } Now it should work!
  7. Hello, I worked some hours to be able to view attribute in boxes(like color picker), i've modified the product.tpl, product.js and its work . As you see in attach near size(first) attribute also apear color name, i know why appear(because i use group sellection), but what can i do to appear just the sizes withot color names(its ulgy to appear twice, because also appear color picker). I take a look over ProductController and i thing i should add some codes there but i dont know what. this is the code that i have added in product.tpl {if isset($groups)} <!-- colors --> <div id="size_picker"> <p>{l s='Alege o masura:'}</p> <div class="clear"></div> <ul id="size_to_pick_class" class="size_to_pick_list"> {foreach from=$groups key=id_attribute_group item=group} {foreach from=$group.attributes key=id_attribute item=group_attribute} <li><a id="size_{$id_attribute|intval}" class="size_pick" onclick="updateMasuraSelect({$id_attribute|intval});$('#wrapResetImages').show('slow');" style="opacity: 1;" title="{$group_attribute|escape:'htmlall':'UTF-8'}">{$group_attribute|escape:'htmlall':'UTF-8'} </a></li> {/foreach} {/foreach} </ul> <div class="clear"></div> </div> {/if} Thank you
  8. But you what they use for attribute filter and for showing attribute on product_list? Thank you
  9. Referitor la metode de transport vezi sa ai selectata zona. ai setat si pretul curierului? Referitor la pasi ai putea incerca onepage checkout!
  10. Avand in vedere ca am adaugat mai multi curieri iar curierul default este urgent curier, cand se face checkout si se ajuge la metode transport si clientul doreste sa aleaga alt tip de transport, costul acestuia nu se actualizeaza in cosul de cumparaturi, ramanand trafiul curierului default. Precizez ca aceasta problema o intampin numai la metoda de checkout in 5 pasi la cea one page functioneaza. Astept o solutie va multumesc.
  11. Hello where we should add this in product.tpl? which line?for ps 1.4
  12. Sory for that but i modify the file classes/Link.php instead created the override/classes/link.php. But after i created ive add this <?php class Link extends LinkCore { public function getCategoryLink($id_category, $alias = NULL, $id_lang = NULL) { if (is_object($id_category)) return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.'cars/'.$id_category->link_rewrite) : (_PS_BASE_URL_.__PS_BASE_URI__.'category.php?id_category='.(int)($id_category->id)); if ($alias) return ($this->allow == 1) ? (_PS_BASE_URL_.__PS_BASE_URI__.'cars/'.$alias) : (_PS_BASE_URL_.__PS_BASE_URI__.'category.php?id_category='.(int)($id_category)); return _PS_BASE_URL_.__PS_BASE_URI__.'category.php?id_category='.(int)($id_category); } } ?> then ive add this line in htacces RewriteRule ^cars/([a-zA-Z0-9-+]*)(.*)$ category.php?url_rewrite=$1$2 [QSA,L,E] and ive got error 504 or 503 ive dont remember well. What ive done wrong? So can you please what should i do to add a word instead category id? thank you
  13. I had tried what you said and i gett missing category error. can you please tell me what i should do ? Thank you
×
×
  • Create New...