Jump to content

Radi

Members
  • Posts

    14
  • Joined

  • Last visited

Profile Information

  • Location
    PL
  • Activity
    Agency

Radi's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. PayPal will not support our refund claim (because not). Prestashop developer does not answer (even though there is support offered). How can we get help or refund?
  2. We buy UPS Delivery Status from PrestaShop developer but no reply after few messages to developer http://addons.prestashop.com/pl/1504-ups-delivery-status.html Module not save data and show error [PrestaShop] Fatal error in module AdminController: Class name must be a valid object or a string How to get support or refund ?
  3. I have the same exact problem with 1.5.4.1
  4. W statystykach esklepu -> Wyszukiwarka sklepu czyli moduł statssearch wrzuca takie ciągi słów kluczowych: img default small default jpg Mieliście podobny problem takich wpisów mam coraz więcej w statystykach i baza rośnie niepotrzebnie. Może jest to związane z modyfikacją
  5. I have similar problem. If change default category product breadcrumb show old default category but if clear cache browser show new breadcrumb. Clear smarty cache not resolve problem. Is any fix ?
  6. I have multishop PS 1.5.4.1 but some time I have trouble with associate images to few eshops. If try associate image with your shop PS b.o. show meessage: An error occurred while attempting to associate this image with your shop and image isn't associate with eshop I try uncheck checkbox all work fine. If delete image and add image with all shop context all is ok and next I uncheck checkobx all is ok but if try check again: An error occurred while attempting to associate this image with your shop and image isn't associate with eshop And image isn't add. I try dev mode but only "technical error" show and nothing more Please can anybody help ? [PrestaShopDatabaseException] Field 'cover' doesn't have a default value INSERT INTO ps_image_shop (`id_image`, `id_shop`) VALUES(2803, 2) at line 607 in file classes/db/Db.php 601. WebserviceRequest::getInstance()->setError(500, ' '.$this->getMsgError().'. From '.(isset($dbg[3]['class']) ? $dbg[3]['class'] : '').'->'.$dbg[3]['function'].'() Query was : '.$sql, 97); 602. } 603. else if (_PS_DEBUG_SQL_ && $errno && !defined('PS_INSTALLATION_IN_PROGRESS')) 604. { 605. if ($sql) 606. throw new PrestaShopDatabaseException($this->getMsgError().'<br /><br /><pre>'.$sql.'</pre>'); 607. throw new PrestaShopDatabaseException($this->getMsgError()); 608. } 609. } 610. 611. /**
  7. Same hash (#) problems in category name with polish language. Rebuilding attribute and URL in blockalyerd module not help
  8. Same hash (#) problems in category name with polish language. Rebuilding attribute and URL in blockalyerd module not help
  9. The same problem on 1.5.4.1 sort by quantity bug and blocklayered module incorrect availability in multistore if is enable Share available quantities to sell.
  10. I like this module but I'm try TopSellerInCategory in PS 1.5.4.1. Module duplicate and show the same product in multistore mode from another domain. I fix it by repalce LEFT JOIN `'._DB_PREFIX_.'product_lang` AS pl ON (p.`id_product` = pl.`id_product` AND `id_lang` = '.$id_lang.') to LEFT JOIN `'._DB_PREFIX_.'product_lang` AS pl ON (p.`id_product` = pl.`id_product` AND `id_lang` = '.(int)$id_lang.Shop::addSqlRestrictionOnLang('pl').') But quantity is same for both domains. How to fix it ?
  11. Hello I'm trying to get Address delivery, address invoice, Delivery method, payment method on /module/cashondelivery/validation (validation.tpl)payment page. On PS 1.4 it can be done by $address = new Address($cart->id_address_delivery, intval($cookie->id_lang)); $address_invoice = new Address($cart->id_address_invoice, intval($cookie->id_lang)); $carrier = new Carrier($cart->id_carrier, intval($cookie->id_lang)); $state = State::getNameById($address->id_state); $state_invoice = State::getNameById($address_invoice->id_state); $smarty->assign('state', $state); $smarty->assign('state_invoice', $state_invoice); $smarty->assign('address', $address); $smarty->assign('address_invoice', $address_invoice); $smarty->assign('carrier', $carrier); <p>{$address->firstname} {$address->lastname}</p> <p class="payment_data">{$address->company}</p> <p class="payment_data">{$address->address1}</p> <p class="payment_data">{$address->postcode} {$address->city}</p> <p class="payment_data">{$state}</p> <p class="payment_data">{$address->country}</p> <p class="payment_data">{$address->phone}</p> <p class="payment_data">{$address->phone_mobile} But PS1.5.4.1 have no assigned template variables. How to get required variables ? Please, examples and suggestions.
  12. I'm trying prepare my own validation In authcontroller.php i made if (Tools::getValue('firm') == "1"){ if (!Tools::getValue('vat_number')) $this->errors[] = Tools::displayError('You have chosen that you want to get invoice, please fill in VAT ID'); if (!Tools::getValue('company')) $this->errors[] = Tools::displayError('You have chosen that you want to get invoice, please fill in company name'); } Add add to authentication.tpl <p class="checkbox"> <input type="checkbox" name="firm" id="firm" value="1"> <label for="firm">{l s='I need an invoice'}</label> </p> All works fine ! If customer check checkbox "firm" run validation and it is what i need. But in One Page Checkout i try do the same but use <p class="checkbox"> <input type="checkbox" name="invoice_address" id="invoice_address" value="1"/> <label for="invoice_address"><b>{l s='Please use another address for invoice'}</b></label> </p> if (Tools::getValue('invoice_address') == "1"){ if (!Tools::getValue('vat_number_invoice')) $this->errors[] = Tools::displayError('You have chosen that you want to get invoice, please fill in VAT ID'); if (!Tools::getValue('company_invoice')) $this->errors[] = Tools::displayError('You have chosen that you want to get invoice, please fill in company name'); } I would like validate empty fields and show errors like previous example on authentication : <input type="text" class="text" id="vat_number_invoice" name="vat_number_invoice" value="" /> and <input type="text" class="text" id="company_invoice" name="company_invoice" value="" /> I'm look in forum and try made changes few days but no results I'm begginer. Can anybody help how made changes?
  13. After installing clean presta 1.4.0.9 in tools -> cms I add new subcms category is present in BO but not show in FO. I use blockcms to show in FO cms pages but subcms page show only name and empty decription, category home show names and descriptions of pages properly. I use define('_PS_DEBUG_SQL_', true); $start_time = microtime(true); in config.inc.php and try delete subcms category now in BO presta show: Unknown column 'id_category' in 'where clause' SELECT `id_cms_category` FROM `ps_cms_category` WHERE `id_parent` = 2 AND `id_parent` != `id_category` Can anybody help ?
×
×
  • Create New...