
Jibu
Members-
Posts
21 -
Joined
-
Last visited
Everything posted by Jibu
-
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.
- 1 reply
-
- fedex ground
- shipping
-
(and 1 more)
Tagged with:
-
Any help?
-
Related problem https://www.prestashop.com/forums/topic/639808-trying-to-implement-full-string-search-to-1725/
-
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 ?
-
Trying to implement full-string search to 1.7.2.5
Jibu replied to 475513a's topic in Core developers
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' -
sorry, i am not understand. please explain.
-
Same problem http://forge.prestashop.com/browse/BOOM-1856
-
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
-
packages One product that ship in two boxes.
Jibu replied to Jibu's topic in Addons, modules and themes developers
https://www.prestashop.com/forums/topic/309490-shipping-in-two-boxes-help-please/ -
Shipping in two boxes help please..
Jibu replied to palotkt's topic in Configuring and using PrestaShop
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 -
packages One product that ship in two boxes.
Jibu posted a topic in Addons, modules and themes developers
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 -
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 ?
-
This webpage is not available.....Please help!
Jibu replied to moonmosaic's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
same error when i try to log in back end i am getting error This webpage is not available -
How to add new Custom field Catalog ?
Jibu replied to Jibu's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Is there any document for that ? -
How to add new Custom field Catalog ?
Jibu replied to Jibu's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
also i need new custom field in cms page. -
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 ?
-
[SOLVED] Customer only for US and Canada
Jibu replied to Jibu's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
Its working Thanks -
[SOLVED] Customer only for US and Canada
Jibu replied to Jibu's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
http://signsoutlet.com/v2/ Login page -
[SOLVED] Customer only for US and Canada
Jibu replied to Jibu's topic in Ecommerce x PrestaShop [ARCHIVE BOARD]
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.