Whenever I use a RSS link with https, the shortcode does not display the feed. Is there some additional setting I need to look at?
Thanks
https://www.ads-software.com/plugins/fetch-feed-shortcode-pageable/
]]>Will your plugin insert posts from multiple separate blogs onto a web page on an entirely different website page that is built in a .NET framework?
Please advise.
Joe
https://www.ads-software.com/plugins/fetch-feed-shortcode-pageable/
]]>I find that default styles are just horrendous, taking them out is easy, but it would be nice if the plugin shipped with better default styles that fit well into any theme. Below is my suggested styles that should work nicely with any site right out of the box.
P.S. The styles assume that the following 2 changes have been made to the output code.
Pagination is wrapped in $aPage["PAGINATION"] = "\t<div id=\"pageDiv\">\r".$sPageButtons."\t</div>\r";
(no align center, so users can position it as they wish).
Current page is wrapped in a span with an appropriate class name.
$sPageButtons .= "\t\t<span class=\"pageActive\">".$i."</span>\r";
.ItemTitle {
font-weight: bold;
}
.ItemAuthor,
.ItemDate {
font-style: italic;
}
.ItemDate {
font-size: .9em;
}
.ItemSeparator {
border: 0px; /* FF, Opera */
height: 0;
border-top: 1px solid #ccc;
}
a.ItemTitleLink {
text-decoration: none;
}
a.ItemTitleLink:hover {
text-decoration: underline;
}
a.prevLink,
a.nextLink,
a.pageLink,
span.pageActive {
text-decoration: none;
padding: 3px 5px;
}
a.prevLink:hover,
a.nextLink:hover,
a.pageLink:hover {
background: #eee;
}
span.pageActive {
font-weight: bold;
}
#pageDiv {
text-align: center;
}
Hope this is helpful.
https://www.ads-software.com/extend/plugins/fetch-feed-shortcode-pageable/
]]>I’ve tried parsing an atom field with this plugin & it failed. When I looked at the code there were no support for pubDate & category fields.
(Also in my dev environment I got an error on $content variable which was not set to empty string. Adding $content = '';
before foreach
solved the issue.)
Here’s what I’ve added to the FetchFeedPageable_call function to extend the support. If you could incorporate these in future plugin revisions that would be great.
case "pubDate":
$date=$item->get_date();
$content .= '<div class="ItemDate">'. esc_html($date) .'</div>';
break;
and
case "category":
$category = $item->get_category();
$content .= '<div class="ItemCategory">'.$category->get_label() .'</div>';
}
I would also recommend removing the hard
from the results, it’s best practices and folks can add the spacing/separators they need via CSS.
Hope this helps.
https://www.ads-software.com/extend/plugins/fetch-feed-shortcode-pageable/
]]>I’m getting a fatal error:
Fatal error: Call to a member function get_items() on a non-object in /home/xxxxyyyy/public_html/blogs/wp-content/plugins/fetch-feed-shortcode-pageable/fetch-feed-shortcode-pageable.php on line 141
Any ideas?
https://www.ads-software.com/extend/plugins/fetch-feed-shortcode-pageable/
]]>Hi guys,
This plugin pages the results from my rss feed but comes up with ugly urls like ‘?pagenum=2&cursor=10’.
Is there a way to use my permalinks on this so it will end up like /page/2?
Any help would be appreciated!
thanks.
https://www.ads-software.com/extend/plugins/fetch-feed-shortcode-pageable/
]]>