Jump to content

btc.dev

Members
  • Posts

    52
  • Joined

  • Last visited

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

btc.dev's Achievements

Newbie

Newbie (1/14)

18

Reputation

  1. Hi, In the Controller source, there's this // Usage of ajax parameter is deprecated $this->ajax = Tools::getValue('ajax') || Tools::isSubmit('ajax'); But if this is truly deprecated nowhere do I see the alternative to do ajax processing in the controllers ? Anybody has an idea about this ? Regards, btc
  2. Hi, If you want the PDF invoice to be attached to the mail sent to a customer for an order status change you can use our module http://btcdev.net/en/mail-attachment-order Regards, BTConsulting
  3. Ce module permet de rapidement assigner ou enlever des produits à une catégorie. Il suffit de sélectionner la catégorie et de cliquer sur la checkbox du produit. Pour plus d'information visitez notre site http://btcdev.net/fr/fast-category-product ou contactez nous. Cordialement, BTConsulting
  4. Bonjour, Oui il est également possible d'enlever le statut "en solde" et la réduction (voir image attachée) Cordialement, BTConsulting
  5. Ce module permet d’appliquer une réduction, d'un montant ou d'un %, et de mettre le statut 'en solde' à tous les produits d'une marque. Pour plus d'information visitez notre site http://btcdev.net/fr/sale-manufacturer ou contactez nous. Cordialement, BTConsulting
  6. Ce module permet de changer le statut d'une commande directement dans la page des commandes en seulement 2 clicks. Pour plus d'information visitez notre site http://btcdev.net/fr/fast-order-state-change ou contactez nous. Cordialement, BTConsulting
  7. La nouvelle version du module compatible avec Prestashop 1.5 est disponible. Pour plus d'informations consulter notre site web: http://btcdev.net/fr/mail-attachment-order Cordialement, BTConsulting
  8. Le module Compatibilié Produit est idéal pour tous les boutiques de pièces détachées, que ce soit pour l'automobile, la moto, l'informatique ... Le module permet d'associer aux produits de la boutique des données de compatibilité, par défaut la marque le modèle et l'année. Les données de compatibilité peuvent être chargées via chargement de fichiers excel ou csv ou selon une solution spécifique adaptée à vos besoins. Au niveau du Front Office le module ajoute Un bloc avec des boites de sélection pour les champs marque, modèle et année avec un chargement dynamique des valeurs pour les champs modèle et année en fonction des valeurs sélectionnées pour les champs marque et modèle. Il est également possible d'avoir un champ catégorie pour n'afficher les produits compatibles appartenant à une catégorie sélectionnée. Après sélection les produits compatibles sont affichés suivant le format de liste standard Prestashop. un onglet supplémentaire dans la fiche produit contenant les données de compatibilité Examples d'installation du module: http://www.encrepaschere.be/ http://www.equipit.se/ Pour plus d'informations n'hésitez pas à nous contacter. BTConsulting
  9. Bonjour, Vous pouvez utiliser ce lien: category.php?id_category=1 mais il faut en plus commenter quelques lignes dans le fichier controllers/CategoryController.php // if ($this->category->id != 1) // { $nbProducts = $this->category->getProducts(NULL, NULL, NULL, $this->orderBy, $this->orderWay, true); $this->pagination((int)$nbProducts); self::$smarty->assign('nb_products', (int)$nbProducts); $cat_products = $this->category->getProducts((int)(self::$cookie->id_lang), (int)($this->p), (int)($this->n), $this->orderBy, $this->orderWay); // } btc.dev
  10. Hi, Javascript sources are added to the $js_files array via the Tools::addJS function. The jQuery version installed with PS is added in the setMedia function: public function setMedia() { global $cookie; Tools::addCSS(_THEME_CSS_DIR_.'global.css', 'all'); Tools::addJS(array(_PS_JS_DIR_.'jquery/jquery-1.4.4.min.js', _PS_JS_DIR_.'jquery/jquery.easing.1.3.js', _PS_JS_DIR_.'tools.js')); if (Tools::isSubmit('live_edit') AND Tools::getValue('ad') AND (Tools::getValue('liveToken') == sha1(Tools::getValue('ad')._COOKIE_KEY_))) { Tools::addJS(array( _PS_JS_DIR_.'jquery/jquery-ui-1.8.10.custom.min.js', _PS_JS_DIR_.'jquery/jquery.fancybox-1.3.4.js', _PS_JS_DIR_.'hookLiveEdit.js') ); Tools::addCSS(_PS_CSS_DIR_.'jquery.fancybox-1.3.4.css'); } $language = new Language($cookie->id_lang); if ($language->is_rtl) Tools::addCSS(_THEME_CSS_DIR_.'rtl.css'); } Regards, btc.dev
  11. Hi, I suppose you want to access the category of the product in product-list.tpl ? You can use $product.id_category_default to access the default category, for example: <p>Product Default Category:{$product.id_category_default}</p> Regards, btc.dev
  12. Hi, You have to modify the function ProdTab, more specifically this line: $this->MultiCell($w[++$i], 5, Tools::iconv('utf-8', self::encoding(), $product['product_name']), 'B'); becomes $this->MultiCell($w[++$i], 5, Tools::iconv('utf-8', self::encoding(), '[id:'.$product['product_id'].'] '.$product['product_name']), 'B'); Regards, btc.dev
  13. Hi, I have tested the module on Prestashop 1.4.4.1 and it works fine, you only need to replace line 23 in the file authentication.tpl of the module, replace {include file=$tpl_dir./errors.tpl} by this {include file="$tpl_dir./errors.tpl"} Regards, btc.dev
  14. Hi, Maybe our free module can help http://www.prestashop.com/forums/topic/144646-module-sale-category-apply-a-reduction-on-sale-status-to-all-the-products-of-a-category/page__fromsearch__1 It allows to apply specific price/reduction/sale for products of a category. Regards, BTConsulting
  15. Hi, You could use our free module that enables to apply a reduction/on sale status to all products of a category, also recursively. For more information see http://www.prestashop.com/forums/topic/144646-module-sale-category-apply-a-reduction-on-sale-status-to-all-the-products-of-a-category/ Regards, btc.dev
×
×
  • Create New...