Jump to content

Sultan

Members
  • Posts

    87
  • Joined

  • Last visited

Everything posted by Sultan

  1. Hi emmim44, Please check out my post here: http://www.prestashop.com/forums/viewthread/58619/ from Post # 2 to the end... HTHs If you need more help don't hesitate to tell us. G'Luck
  2. Hi John, Check this out http://www.prestashop.com/forums/viewthread/58775/ HTHs G'Luck
  3. what I would suggest here is to re-upload the images.inc.php file to the PS root. Attached is the original images.inc.php file for PS version 1.3.1.1 Please upload it with binary transfer type using your favorite FTP client. If that didn't solve the problem you might need to re-upload the Image.php & ImageType.php files to PSROOT/classes. All are attached with this post. give it a try... HTHs! G'Luck NOTE: Please take a backup of your files before replacing.sinemacula.zip
  4. Hi Rocky, Thanks for your reply... the screenshot you have is totally different than the one I have! it seems because I live in SA I can not use this service! even with my account verified. strange from PayPal! Thanks for your help...
  5. Okay. I've created business account with PayPal, I've installed the PayPal modules and added the PayPal business e-mail. However, In my PayPal account I couldn't find the following under profile In Profile >> Selling Preferences >> Website Payment Preferences In Profile >> Selling Preferences >> Instant Payment Notification Preferences I found instead Add/Edit Bank Account. But once I click on that, I got the following message: The Wiki information is so outdated, so it couldn't help a lot. What can I do to get PayPal payment on my website? Thanks
  6. Thanks tomerg3 for your suggestions. I've contacted so many people that could fix this issue with, 1.2.5 but with no luck. also, I submitted a post to hire some one to do that here, also with no luck! So, I think having an HTML invoice is going to be the right solution for everybody. Thanks again for your participating.
  7. Tip: if you need to show the exact number of how much items sold you need to use this code in header.php or footer.php $totalOrders = Db::getInstance()->executeS('SELECT COUNT(*) as total_orders FROM `'._DB_PREFIX_.'orders`'); $totalOrderProducts = Db::getInstance()->executeS('SELECT SUM(product_quantity) as total_order_products FROM `'._DB_PREFIX_.'order_detail`'); $smarty->assign(array('totalOrders' => $totalOrders[0]['total_orders'], 'totalOrderProducts' => $totalOrderProducts[0]['total_order_products'])); the difference here between $totalOrderProducts = Db::getInstance()->executeS('SELECT COUNT(*) as total_order_products FROM `'._DB_PREFIX_.'order_detail`'); and $totalOrderProducts = Db::getInstance()->executeS('SELECT SUM(product_quantity) as total_order_products FROM `'._DB_PREFIX_.'order_detail`'); is that the first line of code showing how many records in the table ._DB_PREFIX_.'order_detail by using SELECT COUNT(*). where the second code calculate the total number of quantities sold by using SELECT SUM(product_quantity). HTHs someone. Again, thanks for rocky for his help... without his help I couldn't get that done.
  8. I'm sure there are some people here can help... but are they welling to? :-)
  9. Great, and I appreciate your help... However, neither the PS nor the fpdf support the encoding iso-8859-6 So I couldn't use this encoding in the BO. :down:
  10. yes, you're right, I did that already by using this tool: http://fpdf.fruit-lab.de/ Map cp1250 Then I uploaded the files: arial.php, arialb.php, arial.z, and arialb.z set PDF invoice on the BO to Map cp1250 and font: arial. still not working
  11. Hi & thanks for your reply... yes I've uploaded the arial & arialb fonts to the fpdf fonts folder.... However, it didn't work :down:
  12. Hi everybody, I would like to have HTML invoice instead of the PDF invoice. How can I do that? For the past 7 days I was looking for a solution to solve the ???? letters in the PDF invoices for Arabic, with no luck at all... I, literally, tried every suggested solution on this forum and couldn't find anything works with PS 1.3.1 :down: So, is there a way to have HTML invoice instead of the PDF? Thanks in advance for your help P.S. My store is ready to launch but this issue holding it offline :down:
  13. Hi all, I am seeking for some one that can help me make the PDF invoice supports ARABIC Letters on BO & FO Please feel free to PM me with your charging fees. Thanks. P.S. Payment will be through paypal.
  14. Thanks again... I've checked that but didn't work since it is for v. 1.2 Also, it use TCPDF thanks again,
  15. Thanks tomerg3 for the tip... I search almost every where in the forum w/ arabic UTF-8 and PDF UTF-8 and couldn't find what I'm looking for... Could you please be kind and help me with this :$ thanks
  16. Hi all, I tried several suggestion but still can not get the Arabic letters in the PDF. All what I got is ????? Please I need serious help here... My store is ready but I can't lunch it till I get this issue solved Please help My PS V. 1.3.1.1
  17. Okay, I found out how to do it :-) and here is how if any one would like to do it: [1] open Customer.php on FTP_ROOT/classes/ [2] search for the following code (line 118 or around on 1.3.1.1) $this->id_default_group = 1; [3] change 1 to the group id you want it to be default for registered customers. [4] Save. You are ready to go HTH some one... G'Luck
  18. You're welcome, Please mark your question as [sOLVED] by editing the title
  19. Hi, I have diff. groups: 1. visitors [id=1] 2. member [id=2] 3. vip [id=3] 4. friends [id=4] When a visitor register he/she will be added to the visitor group [id=1] by default. What I am trying to do here is, once a visitor register and create account, I want to change his/her group to be member group [id=2] automatically not manually. WHY?! We accept order by phone, and we would like to encourage our visitors to sign-up and register in our website so they can get 5% off if they made their own orders using their accounts. By using this "member group" the prices will be displayed with the 5% discount once they log in. On the other hand, if a customer call to make an order, he/she shouldn't get this 5% off, so we need to display our prices without the 5% off. I really need help here, Please help/advice... Thanks in advance...
  20. Solved :-) THAAAAAAANKS a lot rocky, I appreciate your time and efforts... Thanks again & always...
×
×
  • Create New...