Jump to content

jakubstaszak

Members
  • Posts

    15
  • Joined

  • Last visited

Profile Information

  • Location
    Warsaw, Poland
  • Activity
    Agency

Recent Profile Visitors

1,889,173 profile views

jakubstaszak's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Has anyone figured this out? My issue is deiiferent: I am offering a pre-order for a book which obviously needs shipping added to the price, while at the same time the book has attached 2 e-books for download. With prestashop, I can either offer a virtual product, or physical one, but there is no option to add virtual product to the package. Or will it work once I combine a virtual and physical products into package of products? Will this pack be available, if I disable physical one (without e-books) not to mislead Clients?
  2. Hello there. I am having rough time with prestashop recently. One of our multistore-configured stores has an issue sending emails. It is not mail configuration, whether it's php mail() or SMTP -- all the other stores may send e-mails properly, this particular one is able to send test mail flawlessly, but neither order mails, nor customer service thread mails, nor contact mails, nor mailalert mails are being sent. They are not even registered in Advanced -> Email e-mails table. When I am sending again any Order status e-mail on this particular store, I only get 'error sending email' message -- dev mode does not allow for any other data to be displayed. Order statuses are configured properly, at least they seem to - I can select them and I can see them. Funny thing is, my main domain to access admin panel is the one which assigned store experiences issue aformentioned. All the other stores' orders experience no issue, though I am managing them all with one domain. WTF?
  3. I'm often reading this forum with very specific questions already asked, but guys.......... could you maybe just sometimes answer these questions? Eg. where does one translate the admin menu actually? I have specific language pack downloaded for Polish already, but admin menu translation is misleading and done by someone not having to work on PrestaShop on a daily basis. Having that question answered, I could translate it right away, no need to risk my other corrected translations get wiped or corrupted by not-as-good-as-described-downloader, as happened multiple times before when our interns tried to cut corners. Instead I get to the dev support forum, where the only answer through 2 pages of topic is 'have you downloaded the language pack?'. Well guess what, that does not answer the question, nor help those who google the specific question, therefore happening to be as misleading as the translations themselves. Turns out I will have to dive into PS core code for couple of hours once again, so that I could correct translations within 3 minutes or so. And as I would have shared these with the pleasure with the community, being behind the schedule I just won't have time to....
  4. Maybe little too late for my solution, but aren't you looking for product combinations by accident? For the latter I have solution that we are polishing right now.
  5. I have configured multistore. 2 shops in 1 group, sharing quantities. I can not manage quantities. They are not editable from product editing page, nor I know where to update database in order to allow PS to read them properly. Is it because I need to turn on advanced stock management in order to have stores sharing quantities, or is there something wrong with the database? ______________ edit: not sure what was the case back then, but I suppose I missed this: in order to manage quantity of the products when qties are shared among group's shops, you need to select that group on multistore select at the top bar.
  6. Hi guys Last phase of deveoping a store - regenerating thumbnails to the right size. Thumbnails disappeared - there are only question marks. Now: we have checked whether db structure is ok - it is product thumbnails are visible in admin panel double checked if they are on server side - most of them are, default image ('photo not available') is not being regenerated, all products' images are cache is off, cleaned with admin panel button, as well as by deleting files on server main .htaccess is fine and regenerated as well dev mode has been turned off, and thumbnails regenerated another time - nothing. Thumbnails are accessible through direct URL. Photos are generally accessible on product page. Seems like only some template's files can't reach files on server, and therefore link to default ('photo not available'), but since this one is not being regenerated - question mark appears (occasionally you may see BRAK ZDJĘCIA as I'm uploading missing 'photo not available'). Problem is not in the template, as it already gets $product.id_image = pl-default ...or maybe there is something wrong with the db? My intern could have messed with that, I've checked and when added photo to product - it was checked as a cover, although first one was already checked as well. Then everything displayed fine - but when I've removed second photo, first photo was not visible from the frontend. Still available in admin panel. Where to look for issues?
  7. Hey guys how can i check from module's level whether it's being launched from hook on particular page? My problem is JS messing up on product page, but neccesary on product-list/category, I need to exclude it on every other page, thinking of sth like this: function hookHeader($params){ if (Configuration::get('PS_CATALOG_MODE') || $WHATEVER_HERE!='product-list') // or so return; $this->context->controller->addJS(($this->_path).'js/ntiprodsattribsAR.js'); } .......or should I just give up & exclude module from hook? Maybe any other way?
  8. My problem was different, don't know why but PrestaShop has lots of errors in it's code, templates and translations, which leads to situations like these. I had to change {if} rule in opc/cart template in order to force appropriate behavior. Same is for quantities and misleading polish admin panel translation, for example, you just need to rebuild tpl from scratch.
  9. As I supposed, you need to edit yourtheme/modules/bankwire/templates/views/hook/payment.tpl Insert: <img src="/themes/yourtheme/img/bankwire.png" title="{l s='Pay by bank wire' mod='bankwire'}"> Into <a> element inside that module.
  10. Same problem as above, got everything (I've found) set as tax included, nothing has been changed, everything worked fine until one day cart (OPC) decided to show total price tax excluded, while on other listings as well as at each product on OPC page, tax is included, cache off.
  11. Probably only by changing module's *.tpl Having found nothing on the web I'll get to code.... once again.
×
×
  • Create New...