diabolyo Posted September 25, 2011 Share Posted September 25, 2011 Bonjour, J'ai besoin d'exporter impérativement les descriptions courtes et longues de mes produits car l'une est complémentaire de l'autre, comment puis-je customiser la template dans ce sens. Quand je rajoute {DESCRIPTION_SHORT} ou {SHORT_DESCRIPTION} dans le template cela ne fonctionne pas… A mon avis cela doit être plus compliqué que ça, non ? Merci de votre aide. Link to comment Share on other sites More sharing options...
Fabien Serny Posted September 25, 2011 Share Posted September 25, 2011 Ouvrez votre fichier /modules/ebay/ebay.php à la ligne 1646 et remplacer : // Load eBay Description $datas['description'] = str_replace( array('{DESCRIPTION}', '{EBAY_IDENTIFIER}', '{EBAY_SHOP}', '{SLOGAN}', '{PRODUCT_NAME}'), array($datas['description'], Configuration::get('EBAY_IDENTIFIER'), Configuration::get('EBAY_SHOP'), '', $product->name), Configuration::get('EBAY_PRODUCT_TEMPLATE') ); par // Load eBay Description $datas['description'] = str_replace( array('{DESCRIPTION}', '{DESCRIPTION_SHORT}', '{EBAY_IDENTIFIER}', '{EBAY_SHOP}', '{SLOGAN}', '{PRODUCT_NAME}'), array($datas['description'], $product->description_short, Configuration::get('EBAY_IDENTIFIER'), Configuration::get('EBAY_SHOP'), '', $product->name), Configuration::get('EBAY_PRODUCT_TEMPLATE') ); Link to comment Share on other sites More sharing options...
Fabien Serny Posted September 25, 2011 Share Posted September 25, 2011 Et bien entendu après dans le template, vous utilisez la variable {DESCRIPTION_SHORT} N'oubliez pas de revenir ici pour confirmer que cela fonctionne Link to comment Share on other sites More sharing options...
diabolyo Posted September 26, 2011 Author Share Posted September 26, 2011 Merci, je teste et je reviens vers vous Link to comment Share on other sites More sharing options...
diabolyo Posted October 12, 2011 Author Share Posted October 12, 2011 Ça fonctionne super ! Sauf que quand j'ai mis à jour le module et resynchronisé mes annonces, mes descriptions courtes ont disparues ! Link to comment Share on other sites More sharing options...
Fabien Serny Posted October 13, 2011 Share Posted October 13, 2011 J'ai rajouté le champs {DESCRIPTION_SHORT} dans la prochaine release. Le fait de mettre à jour ne vous fera donc plus perdre cette modification Link to comment Share on other sites More sharing options...
diabolyo Posted November 3, 2011 Author Share Posted November 3, 2011 Super merci. Link to comment Share on other sites More sharing options...
Recommended Posts