Jump to content

Jibu

Members
  • Posts

    21
  • Joined

  • Last visited

Everything posted by Jibu

  1. PS version 1.7.2.4 Installed Module [Web Development VIZO] FedEx.com: shipping rates + shipping label printing in the checkout order page 'FedEx Ground' shipping methods is not showing. all other shipping methods are working fine. FedEx Express Saver,FedEx 2Day,FedEx Standard Overnight,FedEx Priority Overnight,FedEx First Overnight. Configure http://prntscr.com/k35xtp http://prntscr.com/k35yzo https://prnt.sc/k35zo3 please help me to show the FedEx Ground method.
  2. Related problem https://www.prestashop.com/forums/topic/639808-trying-to-implement-full-string-search-to-1725/
  3. Search result When i search key words eg. '1992 honda civic coilovers' need to show products matching all the words. now it search each word on products. so when a product matching a word 'honda' and not matching other words it show in results. any solution ?
  4. Same problem, any solution ? when i search "1992 honda" need to show products matching both the key words ie. products contain '1992' and 'honda' no need to show products only matching '1992' or 'honda'
  5. sorry, i am not understand. please explain.
  6. Same problem http://forge.prestashop.com/browse/BOOM-1856
  7. I am using PS 1.7 Created new module for saving additional dimensions for a products. https://prnt.sc/jgxgeh public function hookDisplayAdminProductsExtra($params){ $id_product =0; if (isset($params['id_product']) && (int)$params['id_product']) { $id_product =(int)$params['id_product']; } $sql = 'SELECT * FROM '._DB_PREFIX_.'_dimensions WHERE id_product = '.$id_product; $dimensions = Db::getInstance()->ExecuteS($sql); $this->context->smarty->assign(array( 'id_product' => $id_product, 'dimensions' => $dimensions, )); return $this->display(__FILE__, 'views/templates/admin/form.tpl'); } //Saving Data public function hookActionProductUpdate($params){ $id_product =(int)$params['id_product']; $_asj_pkg_dim_width=Tools::getValue('asj_pkg_dim_width'); $_asj_pkg_dim_height=Tools::getValue('asj_pkg_dim_height'); $_asj_pkg_dim_depth=Tools::getValue('asj_pkg_dim_depth'); $_asj_pkg_dim_weight=Tools::getValue('asj_pkg_dim_weight'); //Deleting old items Db::getInstance()->delete('products_package_dimensions', 'id_product ='.$id_product); //insert Db::getInstance()->insert('products_package_dimensions', array( 'id_product' => $id_product , 'width' =>$_asj_pkg_dim_width, 'height'=>$_asj_pkg_dim_height, 'depth'=>$_asj_pkg_dim_depth, 'weight'=>$_asj_pkg_dim_weight, )); } Its working fine. How to validate this form? Need to validate numbers only and required field
  8. https://www.prestashop.com/forums/topic/309490-shipping-in-two-boxes-help-please/
  9. I have the same problem https://www.prestashop.com/forums/topic/806885-one-product-that-ship-in-two-boxes/?page=0#comment-2849331 Please help
  10. One product that ship in two boxes. We know the box sizes(17x17x10 & 25x17x6.5 each) and the weights(51lbs & 42lbs) with the items packed.How to handle this in product shipping package dimension
  11. i am using PS17 Followed the doc. to creating modules doc.prestashop.com/display/PS17/Displaying+content+on+the+front+office how to show header and footer on display.tpl //localhost:8080/ps/module/mymodule/display page shows only 'Welcome to my shop! ' how to show header and footer ?
  12. same error when i try to log in back end i am getting error This webpage is not available
  13. How to add new Custom field Catalog ? need a new field for adding category short description. currently there is one field for description. How to add new field ? Is it is possible ?
  14. Not working 1)download this file and decompress it into tools/geoip/ directory (GeoLiteCity.dat) 2)Enabled the Geolocation by IP (message show Update successful ) 3)Geolocation behavior for restricted countries: Visitors can see your catalog but cannot make an order 4)Geolocation behavior for undefined countries: All features are available 3)Selected countries that can access your store ( Canada,india and United States ) My Force compile is 'yes' and Cache is 'No' In Back Office adding new customer address can select all the countrys and it working fine. i create a address in Back officewith country 'Canada' Login Frontent and go to My-address and edit/add the address, country select box shows Unites States only.
  15. Need to register customers from US and Canada only. so in registration form need to select two country US and Canada, when selecting county need to populate state corresponding country. Currently showing US only.
×
×
  • Create New...