Since upgrading to WP 4.6, our custom fields are not working. We are a newspaper and we use the Cite and Citelink fields to link up via RSS to other newspapers. The Cite and Citelink fields are still there, but nothing happens when we look in preview. Our plugin for this is Feed Wrangler 0.3.2
]]>is this plugin still supported? Not updated for very long time
Notice: Undefined index: feed_slug in /var/www/vhosts/money.cz/httpdocs/wp-content/plugins/feed-wrangler/feed-wrangler.php on line 131
Notice: Undefined index: delete in /var/www/vhosts/money.cz/httpdocs/wp-content/plugins/feed-wrangler/feed-wrangler.php on line 149
]]>Hi!
I follow all the steps from: Here and/or Here but i get always the error: myfeed is not a valid feed template.
P.S: myfeed is the slug name.
Someone help me,please.
Best Regards
]]>When I add two feeds, the table cells appear to be on the same row (using Safari).
The bug is on line 228 of feed-wrangler.php
print(‘</tr’);
It needs a ‘>’ for the closing tr tag.
]]>If you are using a child theme, you must put your custom feed files in the parent theme’s folder. As a workaround, you can edit the plugin code as below:
function load_feed() {
// check if template exists in theme directory, use default RSS2 template otherwise
if (file_exists(TEMPLATEPATH . '/feed-' . $this->slug . '.php')) {
load_template(TEMPLATEPATH . '/feed-' . $this->slug . '.php');
} elseif(file_exists(STYLESHEETPATH .'/feed-' . $this->slug . '.php')){
load_template(STYLESHEETPATH . '/feed-' . $this->slug . '.php');
} else {
load_template(ABSPATH . WPINC . '/feed-rss2.php');
}
}
function template_to_use() {
if (file_exists(TEMPLATEPATH . '/feed-' . $this->slug . '.php')) {
return('feed-' . $this->slug . '.php');
} elseif (file_exists(STYLESHEETPATH . '/feed-' . $this->slug . '.php')) {
return('feed-' . $this->slug . '.php');
} else {
return('default');
}
}
]]>
https://lostechies.com/?feed=MainFeed
https://lostechies.com/MainFeed
They return 404 but include content. This tells me I’ve setup the MainFeed slug correctly and it is delegating to my themes/lostechies/feed-MainFeed.php file correctly.
Any help is appreciated.
]]>Is the plug-in compatible with WordPress 3.1?
Does the plug-in support password authentication of the full-text feed (but not the summary feed)? If so, is there documentation for achieving this authentication?
]]>I must be missing something…all I can enter is the Feed Slug I want, and some notes. Where do I actually specify what goes in the feed? Thanks.
]]>