mahditousi ارسال شده در مرداد 2، 2017 گزارش Share ارسال شده در مرداد 2، 2017 با سلام خدمت همه دوستان بنده مطالب مربوط به این موضوع رو خیلی جاها گشتم ولی توضیح جامع و کاملی پیدا نشد بنده قالب لئو دیجیتال رو با آخرین ورژن فارسی پرستا دارم آدرس سایتم www.chicelo.com فایل rss.php سایتم کار نمی کرد و مطالب رو فید نمی کرد. بعد از انجام یه تغییر جزئی که در یکی از تاپیکها نوشته شده ( تغییر پارامترهای getdata) بود rss فعال شد ولی الان جدیدترین محصولات رو با عکس نشون میده کسی میتونه کدی رو بنویسه تا فقط مطالب مربوط به بلاگ رو فید کنه و به این صورت باشه که مطالب رو بر اساس جدیدترین مطلب به همراه عکس sort کنه الان در حال حاضر کد rss من اینه: <?php /* * 2007-2016 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License (AFL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/afl-3.0.php * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.comfor more information. * * @author PrestaShop SA <[email protected]> * @copyright 2007-2016 PrestaShop SA * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0) * International Registered Trademark & Property of PrestaShop SA */ include(dirname(__FILE__).'/../../config/config.inc.php'); require_once(dirname(__FILE__).'/../../init.php'); if (!Module::getInstanceByName('feeder')->active) exit; // Get data $number = ((int)(Tools::getValue('n')) ? (int)(Tools::getValue('n')) : 10); $orderBy = 'date_add'; $orderWay = 'DESC'; $id_category = ((int)(Tools::getValue('id_category')) ? (int)(Tools::getValue('id_category')) : Configuration::get('PS_HOME_CATEGORY')); $products = Product::getNewProducts(intval($cookie->id_lang), 0, 10, false, 'date_add', 'DESC'); $currency = new Currency((int)$context->currency->id); $affiliate = (Tools::getValue('ac') ? '?ac='.(int)(Tools::getValue('ac')) : ''); $metas = Meta::getMetaByPage('index', (int)$context->language->id); $shop_uri = Tools::getShopDomainSsl(true, true).__PS_BASE_URI__; // Send feed header("Content-Type:text/xml; charset=utf-8"); echo '<?xml version="1.0" encoding="UTF-8"?>'."\n"; ?> <rss version="2.0"> <channel> <title><![CDATA[<?php echo Configuration::get('PS_SHOP_NAME') ?>]]></title> <description><![CDATA[<?php echo $metas['description'] ?>]]></description> <link><?php echo $shop_uri ?></link> <generator>PrestaShop</generator> <webMaster><?php echo Configuration::get('PS_SHOP_EMAIL') ?></webMaster> <language><?php echo $context->language->iso_code; ?></language> <image> <title><![CDATA[<?php echo Configuration::get('PS_SHOP_NAME') ?>]]></title> <url><?php echo $link->getMediaLink(_PS_IMG_.Configuration::get('PS_LOGO')) ?></url> <link><?php echo $shop_uri ?></link> </image> <?php foreach ($products AS $product) { $image = Image::getImages((int)($cookie->id_lang), $product['id_product']); echo "\t\t<item>\n"; echo "\t\t\t<title><![CDATA[".$product['name']." - ".html_entity_decode(Tools::displayPrice(Product::getPriceStatic($product['id_product']), $currency), ENT_COMPAT, 'UTF-8')." ]]></title>\n"; echo "\t\t\t<description>"; $cdata = true; if (is_array($image) AND sizeof($image)) { $imageObj = new Image($image[0]['id_image']); echo "<![CDATA[<img src='".$link->getImageLink($product['link_rewrite'], $image[0]['id_image'], 'small_default')."' title='".str_replace('&', '', $product['name'])."' alt='thumb' />"; $cdata = false; } if ($cdata) echo "<![CDATA["; echo $product['description_short']."]]></description>\n"; echo "\t\t\t<link><![CDATA[".str_replace('&', '&', htmlspecialchars($link->getproductLink($product['id_product'], $product['link_rewrite'], Category::getLinkRewrite((int)($product['id_category_default']), $cookie->id_lang)))).$affiliate."]]></link>\n"; echo "\t\t</item>\n"; } ?> </channel> </rss> نقل قول لینک به دیدگاه به اشتراک گذاری در سایت های دیگر More sharing options...
پست های پیشنهاد شده
به گفتگو بپیوندید
هم اکنون می توانید مطلب خود را ارسال نمایید و بعداً ثبت نام کنید. اگر حساب کاربری دارید، برای ارسال با حساب کاربری خود اکنون وارد شوید .