Jump to content

sonixax

Members
  • Posts

    13
  • Joined

  • Last visited

sonixax's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hi, I have a problem with Presta Shop 1.6 Shipping methods! I've added carrier and assign Europe zone to the Carrier and set it as free shipping carrier, also I activate all of Europe countries in countries and activate Europe in zones! But when I tried to buy some test product from myself to test the checkout progress in Shipping section I've seen : No carriers available. !!! So, how can I solve this problem ?! Thanks a lot
  2. Im trying to get only two value from about 10 values! at the moment I using if statements inside a loop! to get only two value
  3. so, this means there is no way to get Features value without foreach ?!
  4. Hi, I have pt_winestore as my main template in prestashop! But the problem is Prices are not shown in product page (Product.tpl) , and at the same time are shown in product list page (product_list.tpl) ! I don't know why But I know the $productPrice variable is empty! Here is the template code for Product.tpl : <div class="price"> <p class="our_price_display" itemprop="offers" itemscope itemtype="http://schema.org/Offer"> {if $product->quantity > 0}<link itemprop="availability" href="http://schema.org/InStock"/>{/if} {if $priceDisplay >= 0 && $priceDisplay <= 2} <span id="our_price_display" itemprop="price">{convertPrice price=$productPrice}</span> <!--{if $tax_enabled && ((isset($display_tax_label) && $display_tax_label == 1) OR !isset($display_tax_label))} {if $priceDisplay == 1}{l s='tax excl.'}{else}{l s='tax incl.'}{/if} {/if}--> <meta itemprop="priceCurrency" content="{$currency->iso_code}" /> {/if} </p> the if statement return True because I can see the HTML codes but price How can I fix this Problem ?! Thanks a lot
  5. oh,Thanks a lot is there any way to get Features by ID ? (Without using Foreach) (to make auto generated Descriptions!)
  6. Hi, I want to show Product Shipping Details like Width,Height,Depth and ... in Product Page. But the problem is I don't know which Variables should I use to show this Informations in Product page! Also , I do not want to use Features ($features) to show this informations becaus I already set them in Shipping Detail! so, The question is , how can I found variables of width,height and depth and use them in Prestashop 1.6 Smarty engine ?! (product.tpl) Thanks a lot
  7. Its very easy Just Remove : echo ' <div id="discover_prestashop"> <p class="center"><img src="../img/loader.gif" alt="" /> '.translate('Loading...').'</p> </div> </div> <div class="clear"></div>'; and : <script type="text/javascript"> $(document).ready(function() { $.ajax({ url: "ajax.php", dataType: "json", data: "getAdminHomeElement", success: function(json) { if (json.screencast != \'NOK\') $(\'#adminpresentation\').fadeIn(\'slow\'); else $(\'#adminpresentation\').fadeOut(\'slow\'); $(\'#partner_preactivation\').fadeOut(\'slow\', function() { if (json.partner_preactivation != \'NOK\') $(\'#partner_preactivation\').html(json.partner_preactivation); else $(\'#partner_preactivation\').html(\'\'); $(\'#partner_preactivation\').fadeIn(\'slow\'); }); $(\'#discover_prestashop\').fadeOut(\'slow\', function() { if (json.discover_prestashop != \'NOK\') $(\'#discover_prestashop\').html(json.discover_prestashop); else $(\'#discover_prestashop\').html(\'\'); $(\'#discover_prestashop\').fadeIn(\'slow\'); }); }, error: function(XMLHttpRequest, textStatus, errorThrown) { $(\'#adminpresentation\').fadeOut(\'slow\'); $(\'#partner_preactivation\').fadeOut(\'slow\'); $(\'#discover_prestashop\').fadeOut(\'slow\'); } }); }); </script> <div id="partner_preactivation"> <p class="center"><img src="../img/loader.gif" alt="" /> '.translate('Loading...').'</p> </div> from the adminhome.php
  8. Thanks for Answer but : I have searched a lot and cant find anything ! i only find some COMERCIAL modules that they won't useful for me and all of them was expensive This Feature is FREE In Magento !!!!
  9. That is a question , how can i put layered navigation to my home page ?
  10. Hi everyone , I have a website with multiple Domains for example : test.com and test.de so i need to point .com domain to English translation and ,de to German Translation and want The flag icons Directly point to Domains . In Magento i can do it , but in Presta i don't know how can i do it So how can i do it ?
×
×
  • Create New...