Jump to content

shailendra

Members
  • Posts

    54
  • Joined

  • Last visited

2 Followers

Contact Methods

  • Skype
    er.shailendra1

Profile Information

  • Activity
    Developer

Recent Profile Visitors

2,769,219 profile views

shailendra's Achievements

Newbie

Newbie (1/14)

11

Reputation

5

Community Answers

  1. Glad to know this helped you get the actual issue. Kindly mark this post as solved.
  2. Hello snelb91, It seems that you have not uploaded all your homeslider modules images to the image folder which you can found at /modules/homeslider/img/ , so firstly check this and do let me know if this solves your problem or the issue is with other part of the module.
  3. go to /root/modules/blocksearch/blocksearch-top.tpl there you can wrap the complete code in if else condition using {if $page_name=='index'} //your current code goes here {/if}
  4. You can check by turning on debugging mode by setting root/config/defines.inc.php change set define('_PS_MODE_DEV_', false); to set define('_PS_MODE_DEV_', true); then you can paste your error here if you are not able to sort this out.
  5. check here and if this doesn't solve then there may be problem with your featured product module, In that case reinstalling this module again can solve your problem
  6. Please check your image association in respective products as on home page image path it's getting are 1) 31-large/poggiobello-ribolla-gialla.jpg 2) 34-large/proefpakket-januari.jpg and on product page the images are 1) 43-large/poggiobello-ribolla-gialla.jpg 2) 42-large/proefpakket-januari.jpg
  7. rather than using this in product.css, you may use inline css so that it will take higher precedence than any other css applied on the same element. so apply this css in product.tpl <div id="more_info_sheets" class="sheets align_justify" style="display:none;"> and the final script would be <script type="text/javascript"> $(document).ready(function(){ $("a#more_info_tab_more_info").click(function(){ $("#more_info_sheets").toggle(); }); }); </script>
  8. use this Modified script <script type="text/javascript"> $(document).ready(function(){ $("#more_info_sheets").hide(); $("a#more_info_tab_more_info").click(function(){ $("#more_info_sheets").toggle(); }); }); </script> Also as vekia suggested above,you should hide your div having id=more_info_sheets with css display:none initially which will hide your div during page load(for better user experience) instead of after complete page loading.In that case you don't need to add the line $("#more_info_sheets").hide();
  9. In product.tpl file add this code <script type="text/javascript"> $(document).ready(function(){ $("#more_info_sheets").hide(); $("a#more_info_tab_more_info").click(function(){ $("#more_info_sheets").show(); }); }); </script>
  10. you can use webservice option provided by prestashop by default. You can find that in Advanced Parameters Webservicefor reference you can check the following link http://doc.prestashop.com/display/PS15/Using+the+PrestaShop+Web+Service
  11. May be due to the cache file root/cache/class_index.php you are getting the previous result. So delete this file firstly then check the results. Thanks
  12. you can do this by adding [solved] in start of your topic title or you can click the button "Mark Solved" on any of the answer you think, is the soluton of your question. Thanks
×
×
  • Create New...