Jump to content

franklinfs

Members
  • Posts

    58
  • Joined

  • Last visited

3 Followers

Profile Information

  • Location
    Trivandrum
  • Activity
    Developer

franklinfs's Achievements

Newbie

Newbie (1/14)

0

Reputation

2

Community Answers

  1. Hi, I am using Prestashop 1.6.0.6 in my site. In that site i am not able to upload new images in the slider. The "Choose a file" button is not working. So i am not able to choose image for uploading. I search in prestashop form, some of the peoples are suggesting to edit the theme file homeslider.tpl file. I tried that also. Now itself its not working... Please help to solve this issue.
  2. I replaced mail alerts module with original version... Its working fine... Thanks for your help
  3. I am getting this errors Catchable fatal error: Argument 4 passed to ToolsCore::displayPrice() must be an instance of Context, boolean given, called in prestashop/modules/mailalerts/mailalerts.php on line 122 and defined in prestashop/classes/Tools.php on line 451
  4. Hi, I created one payment module "payatstore". When i choose this payment method from front and confirm the order, the order details are inserted properly. But its not redirecting after the order placement. Its going a blank page. But I can able to see the order details in admin side. The blank page url is index.php?fc=module&module=payatstore&controller=validation. I am using one page checkout method. My ps version is 1.5.4.1 When i check the validation controller, i think this code is not working properly.. but i am not sure... $this->module->validateOrder((int)$this->context->cart->id, Configuration::get('PS_OS_PREPARATION'), $total, $this->module->displayName, null, array(), null, false, $customer->secure_key); Give me suggestions
  5. Hi, Where i download the module? Anyone please provide the link?
  6. Hello Patron thanks for your reply. Now itself i am getting the same error. Fatal error: Class 'FrontControllerCore' not found in ....\front\FrontController.php on line 3 I will expalin my requirement. I have the following ajax code in product.tpl file <script> function getQuote(id) { $.ajax({ type: 'POST', url: '{$base_url}controllers/front/FrontController.php', data: 'method=getPrice&id_product='+id, success: function(data) { $("#quoteblock").html(data); } }); } </script> In my controller <?php class FrontController extends FrontControllerCore { public function init() { parent::init(); } public function getPrice() { {some query} } } ?>
  7. Hai I am trying to create a controller file. my controller code is <?php class TestController extends FrontController { public function init() { parent::init(); } public function getPrice() { {some query} } } ?> when i access this controller, i am getting the error,like Fatal error: Class 'FrontController' not found. How can i solve this?
  8. Yes I got it.... error_reporting(E_ALL); ini_set('display_errors', true); ini_set('display_startup_errors', true); $data = ' '; // xml code //Change this variables. $location_URL = "WSDL url"; $action_URL = "action url"; $client = new SoapClient(null, array( 'location' => $location_URL, 'uri' => "", 'trace' => 1, )); try{ $order_return = $client->__doRequest($data,$location_URL,$action_URL,1);
  9. I got this error nusoap_client: got wsdl error: tns:ns:processCheckOutRequest^ (processCheckOutRequest^) is not a supported type.
  10. Hai I have the following request... How can i execute this? Sample request <soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:urn="urn:xmethods-delayed-quotes"> <soapenv:Header/> <soapenv:Body> <urn:processCheckOut soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"> <merchantID xsi:type="xsd:string">89734</merchantID> <passkey xsi:type="xsd:string">c6388632255eee11a3d7f91f43b9a443</passkey> <referenceID xsi:type="xsd:string">AG-1278</referenceID> <transactionID xsi:type="xsd:string">8973</transactionID> <amount xsi:type="xsd:string">2500</amount> </urn:processCheckOut> </soapenv:Body> </soapenv:Envelope> Sample response message <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="urn:xmethods-delayed-quotes" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"> <SOAP-ENV:Body> <ns1:processCheckOutResponse> <response_code xsi:type="xsd:string">00</response_code> <description xsi:type="xsd:string">OK</description> <url xsi:type="xsd:string"> <iframe src="https://172.28.229.157/Apps/iframe/checkout.php?sessionid=4d9b001e638a3f7255c0412da6af88f65759e631ce7820989622b8a6a7246291" style='border:none;width:350px;height:450px' id='iframe1'/> </url> </ns1:processCheckOutResponse> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
  11. How can i get the price details like product price, unit price( with or with offer price), inc vat, exc vat, total price etc.. in product details page. Now the above things are shown in cart summary page. but i need all the details in the product details page For example If go for a product detail page, i will give the quantity. At the time i want to dispaly all the above details.
  12. This method maynot be possible. Because all the values are dynamic. like Type, colors,...
  13. Hai, I am creating the attributes for products. For example i have one product name is "Banner", for this product i have two attributes like "Type" and "Colors" In Type i have two values like "Plain", "Printed". In Colors, i have three values like "2colors","3colors","4colors". Now all the attributes combinations are showing perfect. but my Original requirement is If I select the type "Plain", I dont want to show the next option Colors and their values If I select the type "Printed", then I want to show the next attribute Colors and their values. I am using PS 1.5.6.1
×
×
  • Create New...