-
Posts
54 -
Joined
-
Last visited
Contact Methods
-
Skype
er.shailendra1
Profile Information
-
Activity
Developer
Recent Profile Visitors
2,769,227 profile views
shailendra's Achievements
-
Glad to know this helped you get the actual issue. Kindly mark this post as solved.
-
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.
-
An error occurred while uploading the image
shailendra replied to abby_66's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
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. -
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>
-
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();
-
Please mark this topic as solved. Thanks
- 8 replies
-
- short description
- edit width
-
(and 3 more)
Tagged with:
-
how to get product on another page
shailendra replied to jokisdj's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
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 -
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
- 8 replies
-
- short description
- edit width
-
(and 3 more)
Tagged with:
-
your product page is showing blank screen.
- 8 replies
-
- short description
- edit width
-
(and 3 more)
Tagged with:
-
[SOLVED]Featured products
shailendra replied to Karnickos's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
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