Jump to content

redfordnl

Members
  • Posts

    55
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

redfordnl's Achievements

Newbie

Newbie (1/14)

  • Dedicated Rare
  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

0

Reputation

  1. Hello Nickz, Thanks for your answer. I meant my comment in general. Most of the users of prestashop nowdays use PS 1.7 or new version 8.X (I use for my new shop 8.0.1). It would be nice if somebody can make a step by step instruction how to add images to order history on customers order-history page (see screenshot). Thanks in advance!
  2. Hello, It would be nice if someone answered this question(s) of how to step by step add images to your order history. All the other methods on the forum are outdated or incomplete/unanswered.
  3. This code worked for me https://codepen.io/paulobrien/pen/JXrxBg Very easy to implement Step 1 --> Add class "truncate" to your div <div class="truncate"> Step 2. --> Go to custom.js (somewhere in your theme folder on your webspace/FTP) and add the following code: // requires jquery $(document).ready(function() { (function() { var showChar = 400; var ellipsestext = "..."; $(".truncate").each(function() { var content = $(this).html(); if (content.length > showChar) { var c = content.substr(0, showChar); var h = content; var html = '<div class="truncate-text" style="display:block">' + c + '<span class="moreellipses">' + ellipsestext + '&nbsp;&nbsp;<a href="" class="moreless more">more</a></span></span></div><div class="truncate-text" style="display:none">' + h + '<a href="" class="moreless less">Less</a></span></div>'; $(this).html(html); } }); $(".moreless").click(function() { var thisEl = $(this); var cT = thisEl.closest(".truncate-text"); var tX = ".truncate-text"; if (thisEl.hasClass("less")) { cT.prev(tX).toggle(); cT.slideToggle(); } else { cT.toggle(); cT.next(tX).fadeToggle(); } return false; }); /* end iffe */ })(); /* end ready */ }); You can change character length to whatever you need: var showChar = 400; Works like a charm on PS 8.X (so will work also for PS 1.7).
  4. Hello, Thanks for this code. But sadly I can't get it to work in Prestashop 8.x... I get an blank screen on the my account and history detail pages both. So the code is crashing for this Prestashop version. Does somebody have a good solution for this? Thanks in advance. Greetings
  5. After I installed module and added the watermark and saved I wanted regenerate images. After 500 internal server error, normally update couple times and all images are regenerated. Now I can't acces website or backoffice anymore because... What to do?
  6. Hello Scully! Thank you for your re-ply! No did already try that. But also in themes demo (JMS Cake) it has the same problem when adding product in basket and you go to shopping cart summary. Looks like a responsive problem or something! Hope to hear from you soon!
  7. Hello everyone, I have a problem in mobile responsive theme. When add a product to basket and then go to proceed check-out you don't see the shopping cart summary. Only upsells module... On desktop it's working normal, just in mobile it's disappearing. website: http://www.babydrukwerk.nl Thanks in advance! Greetings!
  8. [sOLVED] Problem was in the Menu module. It was in custom HTML so I had to change the url to ../themes/etc instead it was themes/etc (added ../) now links working fine. Hello Prestashoppers, I've got a problem with the SEO & URL's section. All settings are set to default Prestashop settings: Route to products = {category:/}{id}-{rewrite}{-:ean13}.html Route to category = {id}-{rewrite} Route to CMS = content/{id}-{rewrite} Route to CMS category = content/category/{id}-{rewrite} Everything in front-office is working OK except on the product and CMS pages. When go to this pages the logo changes in a question mark (?) and in dropdownmenu images under category "webshop" also appearing as question mark (?). All other pages work fine (category page, home page etc.) Also for example when on the product page you click on home it goes to 404 page instead of homepage. Now it's going to http://babydrukwerk.nl/deken/index.php instead of http://babydrukwerk.nl/index.php as it should be When turning off "Friendly URL's" product page works fine without question marks. Except CMS pages don't work and are directed tot 404-page. But of course "Friendly URL's" must be enabled when the website is going live. When doing this the problem returns on product and cms pages. I've turned on Error Report but no results there. Also tried to regenerate all images. And deleted old .htacces file and created new one through back office. Still no results... URL: http://www.babydrukwerk.nl I hope anyone has a solution for me! Thanks in advance, Greetings, Nick
  9. Hello everyone, Easy fix... Should knew this also ... Thanks Scully for your quick support! 1) Create php.ini file with the following: memory_limit = 32M max_input_vars = 5000 post_max_size = 32M 2) place the php.ini file in your prestashop/admin folder 3) verify that the info is correct by placing a phpinfo.php file into the same directory with the following code: <?php phpinfo(); ?> 4) navigate in your browser to the phpinfo.php file 5) If everything worked then the paramaters should correspond
  10. Hello Scully, Yes I'm familiar with Error 500/503 etc. But that's not the problem. It's downloading an index.php file instead of saving and I don't know why it does that. Normally delete cache should fix the problem. But not this time...
  11. Hello Scully, Thank you for quick answer. It goes directly to home page. Nothing strange...
  12. Hello everyone, I have a problem in Back Office with the tab Settings/Store Contact. Website is almost done with editing, just need to fill out some information about the Store like store name, adress, longitude/altitude etc. But when I press "Save" it automatically downloads a PHP file called "index.php". So I can't add a store locator or change store information. On all other tabs "save" button works, I've checked already. Also deleted cache through BO and also through FTP (../cache/smarty/cache). Turned on/off cache BO and also "Force Compile". Still not working in this tab. Also turned on error report but this is doing nothing because download starts directly when pressing "save". When I open the PHP file (index.php) it says: <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <html><head> <title>200 OK</title> </head><body> <h1>OK</h1> <p>The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.</p> </body></html> Strange because only in this tab it is not working like the rest of BO. Maybe delete "index.php" through FTP in cache folder? Or another solution possible? Thanks in advance! Greetings from the Netherlands
  13. Hello DesignHause42 and Tomerg3, I have set up 2 databases in my control panel of my host company. One of them is running now with no product information, seo and product names. If I change "settings.inc.php" to other database I get my product information back, SEO is filled in again and product names are back. So how to combine this 2 databases that style stays the same and product information etc. is filled in again? Greetings Nick
  14. Hello thanks for your help guys! @DesignHaus42: Yes I also found this really strange that images and pricing are still good. I will post my product-list.tpl but what do you exactly want from my database? @Tormerg3: Yes I'm very sure, when I connect website to old database website front office looks are very different (no menu bar, no slider etc etc) but all products are normall again with information, seo and product name!
×
×
  • Create New...