Jump to content

sadi21

Members
  • Posts

    19
  • Joined

  • Last visited

Everything posted by sadi21

  1. Hi, i have the same issue of cart re-display at login. i enabled this option at back office but its not working. am i missing something else? PS version 1.6.0.9 thanks
  2. Thanks for the reply Shacker i got it working by setting PS_SPECIFIC_PRICE_FEATURE_ACTIVE to 1 in ps_configuration table.
  3. i developed it for one of my client. their website will be live in 10 days. Then you can check. It is working perfectly.
  4. I am prestashop developer based in Dubai. I have developed a module for mashreq bank payment gateway.
  5. I am importing XML data and adding products directly into database with php code. It works fine, i can edit the product successfully. Checkout also working fine. I am also manually adding records to specific_price table. I can view it in Specific Prices section when i edit the product. But ALL OF THE ITEMS does not appear in the Price Drop page (the page is empty) When i add new SPECIFIC PRICE from back office to any product, everything starts working fine. All products are started displaying in Price Drop. I believe i am missing some function call or a table which activates price drop or something similar. Any help is appreciated. PS version 1.6.09
  6. same issue here i am running my site on localhost & also uploded on web server. The localhost give this error: [8] Trying to get property of non-object while the web server one is working fine. i did not changed any admin area files. any help please?
  7. i am creating a module to verify customer's mobile phone number via sms code. i want to disable checkout feature until the mobile phone number is verified. How to do that? or any other way do that? I am using version 1.6
  8. i am trying to make a new module in prestashop 1.5 and hook it to actionCustomerAccountAdd . but it is not working. here's my code of newstore.php file <?php if (!defined('_PS_VERSION_')) exit; class newstore extends Module { public function __construct() { $this->name = 'newstore'; $this->tab = 'pricing_promotion'; $this->version = '1.0'; $this->author = 'Sadi'; parent::__construct(); $this->displayName = $this->l('Create new store'); $this->description = $this->l('Creates new store for new customer'); $this->confirmUninstall = $this->l('Are you sure you want to delete all loyalty points and customer history?'); } //Module installation-method: public function install() { return (parent::install() AND $this->registerHook('actionCustomerAccountAdd') ); } /* Hook called when a new order is created */ public function hookActionCustomerAccountAdd() { // insert new record $rs = mysql_query('insert into stores(name) values("mystore")'); } } ?> whats wrong in above code? thanks
  9. i also had the same problem. i accidentally included jquery-1.7.2.min.js file twice in header.tpl so if you have included two jQuery files of different versions then this could happen. hope this helps
  10. i tried to create new tab but still it did't work. am i missing something in the php file code? can you guide me steps. thank you
  11. i have created a php file that lists all newsletter subscribers. i've added this file to one of the admin tabs but it gives error. This php file works fine if executed independently. I believe it has to do something with tokens in admin area? Any help please?
  12. Thank you, It worked. it need database access. What i did is: Go to ps_address_format table. Find your countries ID & edit record. At the end of format field add phone_mobile & save. The mobile phone will start showing up on order details page.
  13. Thanks for the reply. i have gone through the function displayAddressDetail in AdminOrders.php but did not find any thing, may be i am not very fluent in php. Can you please guide me precisely what to modify? thanks
  14. Hi, I am using prestashop 1.4.1 I want customer mobile phone number to display on order details page. Currently only home phone is displayed on order details page. I appreciate if anyone can help me do do it.
  15. i face same problem. If an item is ON SALE or PRICE LOWERED and customer checkout using currency other than store's default currency then this problem occurs. no solution found till now.
  16. i have enabled Friendly URL and generated .htaccess file but still it is not working. All images on home page are gone and subpage links not working. i am using siteground.com and a2hosting.com hosting. any suggestions whats is wrong?
×
×
  • Create New...