Re: RSS2 Feed Contribution
Hi All
I’ve been using this mod for a long time and it’s always worked perfectly, right up until I added an SSL.
Now the RSS is working really strangely but I don’t know how to fix it. Firefox hardly renders the page at all, sometimes I get the first one I click on and then no more after that but I guess that first one is from cache.
IE opens it and shows most of it but with a ‘Navigation to the webpage was cancelled’ message across the top on most pages.
Don’t know what to do because these are indexed pages and have been for a while but Cuepower’s RSS have been indexed for up to 6 years and I have to add SSL there as well.
I have reinstalled the mod and it’s running on a 139h install
I would really appreciate any advice anyone can give
Re: RSS2 Feed Contribution
Hello,
I looked around but couldn't find the answer I'm looking for. Is there any way to restrict certain categories and subcategories from showing up on the feed?
One of my stores has 2 different sections, one for retail and one for wholesale as it's better for us this way, and I would like to completely restrict the wholesale category and subcategories from showing up on the feed and not send anything new in this category through the feed. Can this be accomplished?
Thank you for the help.
Re: RSS2 Feed Contribution
Can this plug in also take the RSS Feed from one Zencart and Import it to yet another zencart install?
Re: RSS2 Feed Contribution
Quote:
Originally Posted by
honrheart
Ok I feel like I'm beating my head against a wall here so the time came to ask for help lol. I just upgrading my store to 1.5 and installed the 1.5 version of RSS feed and it works great except for one problem. When I look at my new products feed it is showing an add date of Nov 30th and 11:00 for each product. This is causing the products not to post on my RSS Graffiti page on FB. Does anyone know why it's doing this???
Very strange. The problem was resolved?
Re: RSS2 Feed Contribution
Is it possible to have new_products rss file listed by last_modified date instead for date_addedd?
Re: RSS2 Feed Contribution
Quote:
Originally Posted by
100asa
Is it possible to have new_products rss file listed by last_modified date instead for date_addedd?
header_php.php
Find
PHP Code:
$disp_order_default = PRODUCT_NEW_LIST_SORT_DEFAULT;
require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_LISTING_DISPLAY_ORDER));
Replace by
PHP Code:
$order_by = " order by p.products_last_modified DESC, pd.products_name";
But the results are very surprising.
It is better to use this:
PHP Code:
$order_by = " order by products_date DESC, pd.products_name";
Re: RSS2 Feed Contribution
I've just modify includes/modules/pages/header_php.php with
PHP Code:
$order_by = " order by p.products_last_modified DESC, pd.products_name";
and I've just updated this products http://www.100asa.it/digicom-usb-wav...-m-p-3345.html, but it don't appear into rss http://www.100asa.it/rss_feed.html?feed=new_products
Re: RSS2 Feed Contribution
Quote:
Originally Posted by
100asa
Cache ?