
Sultan
Members-
Posts
87 -
Joined
-
Last visited
Everything posted by Sultan
-
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
-
Hi John, Check this out http://www.prestashop.com/forums/viewthread/58775/ HTHs G'Luck
-
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
-
[SOLVED] Paypal... again!! someone help me please
Sultan replied to Sultan's topic in Configuring and using PrestaShop
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... -
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
-
You're welcome, HTHs... G'luck
-
HTML invoice instead of PDF invoice [PLEASE HELP]
Sultan replied to Sultan's topic in Configuring and using PrestaShop
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. -
[SOLVED] how to show the total number of...
Sultan replied to Sultan's topic in Configuring and using PrestaShop
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. -
HTML invoice instead of PDF invoice [PLEASE HELP]
Sultan replied to Sultan's topic in Configuring and using PrestaShop
Any idea?! or should I forget about it? thx -
HTML invoice instead of PDF invoice [PLEASE HELP]
Sultan replied to Sultan's topic in Configuring and using PrestaShop
Any help pleeeeease -
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:
-
[SOLVED] Change user group after registration
Sultan replied to Sultan's topic in Configuring and using PrestaShop
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 -
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...
-
[SOLVED] how to show the total number of...
Sultan replied to Sultan's topic in Configuring and using PrestaShop
Solved :-) THAAAAAAANKS a lot rocky, I appreciate your time and efforts... Thanks again & always...