• Resolved MDeschenes

    (@mdeschenes)


    Hi,
    I’ve setup a site to display handmade jewelry and now, I’m trying to make RSS feed working, but I get an error 404 when I try to subscribe to it. If i try to access directly the link http://www.creationseclectik.com/feed/, in Firefox 5 and IE8, I get Internal server error 500. Can someone help me with that? What could be wrong with my code?
    Thanks in advance!

Viewing 3 replies - 1 through 3 (of 3 total)
  • 1. Try http://www.creationseclectik.com/?feed=rss2

    2. By default, only Posts are published in the RSS feed and you haven’t published any. Perhaps you need to look for a Page RSS plugin?

    Thread Starter MDeschenes

    (@mdeschenes)

    Thanks for your answer. I’m using the TheCartPress plugin, which uses custom post types. I will look for a way to feed those posts.

    Thread Starter MDeschenes

    (@mdeschenes)

    I was able to solve the problem with this code snippet I added to the function.php of my theme, the array part solves the issue I had with custom post types:

    function myfeed_request($qv) {
    	    if (isset($qv['feed']) && !isset($qv['post_type']))
    	        $qv['post_type'] = array('post', 'tcp_product', 'tcp_template' );
    	    return $qv;
    	}
    add_filter('request', 'myfeed_request');

    Thanks!

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Help with RSS feed’ is closed to new replies.