Jump to content

wiseprt

Members
  • Posts

    52
  • Joined

  • Last visited

1 Follower

About wiseprt

  • Birthday 07/25/1983

Profile Information

  • Location
    Greece
  • Interests
    web design / developing, "black" music, cinema, basketball and everything "techy"
  • Activity
    Developer

Recent Profile Visitors

4,669,112 profile views

wiseprt's Achievements

Newbie

Newbie (1/14)

2

Reputation

  1. hi @Scully, I just comment out the following code and the issue is solved! Mail::Send( $this->context->language->id, 'wishlink', Mail::l('Your wishlist\'s link', $this->context->language->id), array( '{wishlist}' => $wishlist->name, '{message}' => $this->context->link->getModuleLink('blockwishlist', 'view', array('token' => $wishlist->token)) ), $this->context->customer->email, $this->context->customer->firstname.' '.$this->context->customer->lastname, null, strval(Configuration::get('PS_SHOP_NAME')), null, null, $this->module->getLocalPath().'mails/'); Thank you Best Regards
  2. Hello there, This is not working for v. 1.6.1 Even when i totally rename the file sendwishlist.php, still the system send emails. Any other suggestions?
  3. Hello, I'm developing a custom module for csv creation and i want to get the exaclty url of the product with its combination (e.g domain.com/product/158#/37-size-small/46-color-blue) in order when someone copy/paste this url to go to the specific product with the right combinations and not in the default one. How i can do something like that? Please help guys. Thank you all. Best Regards
  4. Hello, I have created a custom module that creates a csv from prestashop data. I use the code below: ------ header('Content-Type: text/csv; charset=utf-8'); header('Content-Disposition: attachment; filename=data.csv'); fputcsv($output, array('Column 1', 'Column 2', 'Column 3','Column 4','Column 5','Column 6')); fclose($output); ----- The generated csv including all the data that i want, but the csv also including some extra code that i don't want. I am attaching the csv in order to see yourself what i mean. Any ideas to avoid these extra data included? Thank you datademo.csv.zip
  5. Hello there, Does anyone now how i can achieve the following? I want to have more values on a product availability option and not only the available / out of stock. For example i want to choose if a product is: 1) Available 2) Sold out (or out of stock) 3) Coming Soon 4) Made to Order Please suggest and help. Best Regards
  6. Hello, The solution suggested by Nixnix is not working on 1.6.0.14 any ideas why? Best Regards
  7. Hello, +1 to this issue, i want this asap! Any updates?
  8. Update: Noticed that (only for greek) if the subject is regarding order, if i choose order id from droprdown then the email sending successfully. If not choose an order, then i got the mail failure. For english no matter if choose order id or not, the message sending successfully. Please guys help. Best Regards
  9. Update: Just noticed that the issue is only when the eshop language is at greek (/el) in english (/en) all email forms are working fine and email sending to the customers! Any thoughts? Encoding issue?
  10. Hi, i suppose this is not a host issue, i am using the monstermegs server which located in Netherlands. Any help appreciated. Best Regards
  11. Hello, I have a custom .html file in my prestashop and want to show different content depending on language. So tried to use inside .html file the following but is not working. I got errors. <?php {if $lang_iso=="el"} ?> <div>the greek content </div> <?php {else} ?> <div> the english content</div> <?php {/if} ?> As this is not a .php or .tpl file i don't know how to make it works. Please if is possible i want a quick answer. Thank you Best Regards
×
×
  • Create New...