Jump to content

fosilia

Members
  • Posts

    36
  • Joined

  • Last visited

Profile Information

  • Location
    Slovakia
  • Activity
    Freelancer

Recent Profile Visitors

4,392,295 profile views

fosilia's Achievements

Newbie

Newbie (1/14)

  • Dedicated Rare
  • First Post Rare
  • Collaborator Rare
  • Week One Done Rare
  • One Month Later Rare

Recent Badges

3

Reputation

  1. Skontrolovat ci jednotlive moduly su aktivovovane aj pre mobil.
  2. To sa vypina Display out-of-stock label on product listing pages dat na nie Parametre obchodu/produkty v menu
  3. Replace modules/ps_searchbar ps_searchbar.zip
  4. Working only with Microsoft edge. For Chrome and Firefox replace js/tiny_mce tiny_mce.zip
  5. Faktura bude mat rok, mesiac a cislo. Napr: 210200001 classes/order/order.php Vyhladat: /** * Generate a unique reference for orders generated with the same cart id * This references, is useful for check payment. * * @return string */ public static function generateReference() { return strtoupper(Tools::passwdGen(9, 'NO_NUMERIC')); } public function orderContainProduct($id_product) { $product_list = $this->getOrderDetailList(); foreach ($product_list as $product) { if ($product['product_id'] == (int) $id_product) { return true; } } return false; } Zamenit: /** * Gennerate a unique reference for orders generated with the same cart id * This references, is usefull for check payment. * * @return string */ public static function generateReference() { $query = new DbQuery(); $query->select('MAX(id_order) as max'); $query->from('orders'); $query->where('id_cart' > 0); $order = Db::getInstance()->getRow($query); $reference = $order['max'] +1 ; $date_reference = StrFTime("%y%m", Time()); return $date_reference.sprintf('%05d', $reference); } public function orderContainProduct($id_product) { $product_list = $this->getOrderDetailList(); foreach ($product_list as $product) { if ($product['product_id'] == (int) $id_product) { return true; } } return false; }
  6. Nastavenie pre jednoduchy produkt a zobrazovanie v detailoch produktu. themes/vasa tema/templates/catalog/_partials/product-details.tpl {* if product have specific references, a table will be added to product details section *} {block name='product_specific_references'} {if !empty($product.specific_references)} <section class="product-features"> <p class="h6">{l s='Specific References' d='Shop.Theme.Catalog'}</p> <dl class="data-sheet"> {foreach from=$product.specific_references item=reference key=key} <dt class="name">{$key}</dt> <dd class="value">{$reference}</dd> {/foreach} </dl> </section> {/if} {/block} Nahradit za ttoto: {* if product have specific references, a table will be added to product details section *} {block name='product_specific_references'} {if !empty($product.specific_references)} <section class="product-features"> <p class="h6">{l s='Specific References' d='Shop.Theme.Catalog'}</p> <dl class="data-sheet"> {foreach from=$product.specific_references item=reference key=key} <dt class="name">{$key}</dt> <dd class="value">{$reference}</dd> {/foreach} </dl> </section> {else} {if isset($product.isbn) && !empty($product.isbn)} {$product_specific_references['ISBN']=$product.isbn} {/if} {if isset($product.upc) && !empty($product.upc)} {$product_specific_references['UPC']=$product.upc} {/if} {if isset($product.ean13) && !empty($product.ean13)} {$product_specific_references['EAN13']=$product.ean13} {/if} {if isset($product.ean13) && !empty($product.mpn)} {$product_specific_references['MPN']=$product.mpn} {/if} {if isset($product_specific_references) && !empty($product_specific_references)} <section class="product-features"> <p class="h6">{l s='Specific References' d='Shop.Theme.Catalog'}</p> <dl class="data-sheet"> {foreach from=$product_specific_references item=reference key=key} <dt class="name">{$key}</dt> <dd class="value">{$reference}</dd> {/foreach} </dl> </section> {/if} {/if} {/block}
  7. Uptade Prestashop 1.7.6.4 on 1.7.6.5 public_html/modules/autoupgrade/classes/UpgradeTools/FilesystemAdapter.php line 86 - Maximum execution time of 30 seconds exceeded Stop.
  8. Vymazat prod subory nie podadresare.cesta cez ftp: var-cache-prod
  9. Kedže sklamaním je prvá inštalácia Prestashop 1.7.0.0 pokial nebeží server na php 7 je nutné prepísať cez ftp: vendor - paragonie - random_compact V prílohe. random_compat.zip
  10. Tu mas postup ako opravit prihlasenie admina. The file/folder permissions has NOTHING to do with this error. The simplest way to generate a new password (for example “mypassword”) is as follows : 1/ Open /config/settings.inc.php and copy the COOKIE_KEY value, a string like : ugVz7xCw9mYzkUWL1285CCyLb5dQOyNgnTxXDrGP0LZNBLrzKTvWyC0n 2/ Open http://www.md5.fr or http://www.md5.cz and in the field, past the copied string immediately followed (without space) by your password : ugVz7xCw9mYzkUWL1285CCyLb5dQOyNgnTxXDrGP0LZNBLrzKTvWyC0nmypassword Submit the form and copy the generated MD5 hash which is like : c838e4909b92e180e6428e85c15b003d 3/ In your database, in the ps_employe table, locate the record that contains the e-mail address you want to use to connect to the BO, modify this record, and past the MD5 hash in the passwd field. Submit the form. 4/ Connect to the BO.
  11. My bezime on line s prepojenim transportu Oberon center asi rok. Bez problemov aj s najnovsou verziou Prestashop 1.6.0 stable (1.6.0.6). Virtuemart vyskusame. Vdaka za Vasu pracu. http://www.camon.sk/eshop
  12. Prestashop 1.5.4.1 slovak - administracia menu v slovencine. V databaze si vymaz stary ps_tab_lang a vloz do databazy tento. Prefix je ps_ ps_tab_lang.zip
  13. I ked som robil veci pre virtuemart a odtial moj nick toto nebude problem, kedze prestashop je taky surovy projekt na zabavu. Opisovane moduly ci preklady za peniaze Sablona? verzia Prestashop. A musis mi poslat vsetky udaje admin pristup a ftp vstup. Samozrejme do pm. Vacsina free sablon je nedokoncena co je logicke, kedze ak chce full kup si ju. Kazda sablona sa da opravit a spristupnit ju aj pre nestastny IE.
×
×
  • Create New...