Search the Community
Showing results for tags 'product feed'.
-
Bonjour, Depuis mi-avril j'ai un souci avec le module natif "Flux RSS de produits" qui ne se met plus à jour. Il est resté bloqué sur une Catégorie de produits affichée dans le module "Produits phares" à une date donnée. Et même les ajouts à cette Catégorie ne changent rien. Je ne sais pas si le souci est au niveau de ps_rssfeed.tpl : <div class="block-contact col-md-2 links wrapper"> <h3 class="h3 hidden-sm-down">{$title}</h3> <div> {if $rss_links} <ul> {foreach from=$rss_links item='rss_link'} <li><a href="{$rss_link['link']}" title="{$rss_link['title']}" target="_blank">{$rss_link['title']}</a></li> {/foreach} </ul> {else} <p>{l s='No RSS feed added' d='Shop.Theme.Catalog'}</p> {/if} </div> </div> ...ou ps_feeder.php : if (!defined('_PS_VERSION_')) { exit; } class Ps_Feeder extends Module { private $templateFile; public function __construct() { $this->name = 'ps_feeder'; $this->author = 'PrestaShop'; $this->version = '1.0.1'; $this->need_instance = 0; $this->controllers = array('rss'); $this->ps_versions_compliancy = array( 'min' => '1.7.0.0', 'max' => _PS_VERSION_, ); parent::__construct(); $this->displayName = $this->trans('RSS products feed', array(), 'Modules.Feeder.Admin'); $this->description = $this->trans('Generate a RSS feed for your latest products.', array(), 'Modules.Feeder.Admin'); $this->templateFile = 'module:ps_feeder/views/template/hook/ps_feeder.tpl'; } public function install() { return parent::install() && $this->registerHook('displayHeader'); } public function getWidgetVariables() { $regex = '!^(.*)\/([0-9]+)\-(.*[^\.])|(.*)id_category=([0-9]+)(.*)$!'; if (!($id_category = (int)Tools::getValue('id_category'))) { if (isset($_SERVER['HTTP_REFERER']) && strstr($_SERVER['HTTP_REFERER'], Tools::getHttpHost()) && preg_match($regex, $_SERVER['HTTP_REFERER'], $regs)) { if (isset($regs[2]) && is_numeric($regs[2])) { $id_category = (int)($regs[2]); } elseif (isset($regs[5]) && is_numeric($regs[5])) { $id_category = (int)$regs[5]; } } elseif ($id_product = (int)Tools::getValue('id_product')) { $product = new Product($id_product); $id_category = $product->id_category_default; } } $orderBy = Tools::getProductsOrder('by', Tools::getValue('orderby')); $orderWay = Tools::getProductsOrder('way', Tools::getValue('orderway')); return array( 'id_category' => $id_category, 'orderBy' => $orderBy, 'orderWay' => $orderWay, ); } public function hookDisplayHeader() { $this->smarty->assign($this->getWidgetVariables()); return $this->fetch($this->templateFile); } } Idéalement, il va piocher dans la Catégorie "2-accueil", comme chez tout le monde. J'ai tenté de vider le cache, se passer en "randomize"... Est-ce que quelqu'un a une idée ?
-
Hi, I have been studying PrestaShop for my next e-commerce project, and I must say, so far, I'm very impressed with its interface. Nice job! I have a question about its available product feed tools though. In OpenCart, I remember using a CSV-based extension called Export/Import Tool, which worked out nicely as a bulk product export/import tool. I have being looking up options available for PrestaShop, but I am not sure if I have found exactly what I'm looking for. The default "export" in Catalog>Product was putting all data in one column, delimited by semi-colon, which I'm not too crazy about. Most modules that I found on the addons store here were either XML-based and/or for importing only, it seems. I prefer working in CSV, preferably using multiple worksheets for speed-sake. Could anyone recommend a good module for what I'm looking for? Cheers, KidTao
-
- 1
-
- product feed
- csv
-
(and 5 more)
Tagged with:
-
hello, I have a problem adding feeds to my website. I have many dropshippers totalling with over 10,000 products to sell. I can never do that manually however I want to upload these products. The only real problem i have is uploading the feed to the categories I have already created. when I upload a feed all of it ends up on the front page. if there was a way to place the products in my set categories that would be great. Can anyone help me please? Thank You
-
hello, I have a problem adding feeds to my website. I have many dropshippers totalling with over 10,000 products to sell. I can never do that manually however I want to upload these products. The only real problem i have is uploading the feed to the categories I have already created. when I upload a feed all of it ends up on the front page. if there was a way to place the products in my set categories that would be great. Can anyone help me please? Thank You