-
Posts
14 -
Joined
-
Last visited
About Lakshmanan PHP
- Birthday 03/29/1988
Profile Information
-
Location
Coimbatore, India
-
Activity
Developer
Recent Profile Visitors
5,762,746 profile views
Lakshmanan PHP's Achievements
Newbie (1/14)
2
Reputation
-
We are developing an android app using prestashop webservice. Currently we are able to obtain JSON response of categories successfully. We need to get subcategories and the products from a given category id. We found that this can be achieved through multiple requests api/categories/?output_format=JSON&filter[active]=1&display=[id,name]&filter[level_depth]=2 to get all categories /api/categories/?output_format=JSON&filter[active]=1&display=[id,name]&filter[id_parent]=47 to find subcategories in a category page /api/products/?output_format=JSON&filter[id_category_default]=47 to get all products of the given category in category page Is this the only way or any other right way to get all subcategories and the products from a given category id? Version 1.6
-
Hi All, Currently shipping cost for an order is (calculated from custom mysql table) added via getTotalShippingCost function in Cart.php (front - override class). But after placing order, In order details it is shown as extra amount and shipping fee is shown as zero. warning shown in admin order details page: Warning Rs. 400.00 paid instead of Rs. 300.00 How to update shipping cost globally for an order? Thanks in advance
-
My prestashop version is 1.6.0.9 Engilsh is the default value I want to add a custom information (delivery time) in order confirmation email I've tried : /base_dir/module/mailalerts/mailalerts.php added extra element {my_delivery_time} in $template_vars then added the same in /base_dir/mails/en/order_conf.html I got the raw text {my_delivery_time} printed in email, but the value is not shown in output
-
When I change the order of postions (of attributes), It shows update successful but the updated order lost on refreshing the page. Also two attributes showing same position, then after adding or deleting a value the postions are showing correctly. My prestashop version is 1.6.0.9 This is crucial since we import product combinations via csv Thanks in advance
-
- combinations
- product
-
(and 2 more)
Tagged with:
-
Hi Robin, Thanks for your support. Your solution works!!! I've removed the 15-jquery.uniform-modified.js file. Thanks again! Lakshman
-
When I use radio buttons inside my theme, it is automatically wrapped by div and span. How to get rid of this? When I tried changing styles by CSS, the element is not clickable Thanks in advance
-
vekia started following Lakshmanan PHP
-
Prestashop version : 1.5.6.2 Server : Localhost : xampp server Webservice : enabled Authentication : Key generated and replaced in example files PS_SHOP_PATH : set to localhost shop path Objective : Create customers via web service Action: While creating a customer via webservice, the following errors occured repeatedly. Unable to create customers via webservice. used the latest PrestaShopWebservice library with example files from github Error : Attached the example api file. Thanks in advance Create.php
-
Hi Carlson & Vekia, Thanks for your response. There will be three or four stores with 1000 products in each store. The main area will be grocery and household products. Hence the traffic will be more, the expected visitors and orders will be around 1000. In short : Grocery stores (3 or 4) 1000 products in each store 1000 visitors per store / per month (may increase) Shall i use multi store or i need to create individual stores? Is there any minimum specifications required for Processor,RAM and Hard Disk on hosting server? I guess i need to have linux hosting which will be important for SEO friendly URLs.