Travis
Forum Replies Created
-
Forum: Plugins
In reply to: [RSS Feed Retriever] Layout of the Feed itemHello,
This code should go in your themes functions.php file. Let me know if this works for you!
Forum: Plugins
In reply to: [RSS Feed Retriever] Layout of the Feed itemHello,
This would require some custom PHP and CSS styling. First you would need to hook into the layout and display the image first:
function custom_rss_layout_callback( $layout ) { $layout = array( 'thumbnail', 'title', 'content', 'postdata', ); return $layout; } add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );
Then you will need use to CSS to adjust the float/clear attributes to display the image to the left of the content.
Hello,
You can use thumbnail=100%x250 to make sure the thumbnail stretches horizontally and the content moves to the line below
Forum: Plugins
In reply to: [RSS Feed Retriever] How can bold and colored titlesHello,
You can modify the title via CSS:
a.wp_rss_retriever_title { font-weight: bold; color: blue; }
Forum: Plugins
In reply to: [RSS Feed Retriever] URL’s stipped from Links after new WP update.Hello,
Can you please post the shortcode you’re using, we’re not seeing this error on our testing server.
Forum: Plugins
In reply to: [RSS Feed Retriever] Thumbnails not appearing on inserted feedHello,
Unfortunately, it does not look like the feed provides a post thumbnail image in their RSS feed.
Hello,
You can display only the title via WordPress filter:
function custom_rss_layout_callback( $layout ) { $layout = array( 'title' ); return $layout; } add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );
Forum: Plugins
In reply to: [RSS Feed Retriever] No ThumbnailsHello,
If the feed does not include any images, unfortunately, you will not be able to pull a post thumbnail. The best thing you can do here is reach out to the source and ask if they can add the post thumbnail to their RSS feed.
Forum: Plugins
In reply to: [RSS Feed Retriever] PHP WarningHello,
This looks like it may be a file permissions on your server. Here is a quick tutorial on how to change file permissions: https://www.wpbeginner.com/beginners-guide/how-to-fix-file-and-folder-permissions-error-in-wordpress/
Let me know if this works for you!
Forum: Plugins
In reply to: [RSS Feed Retriever] How can I rename “read more” and “source”?Hello,
You’ll want to use thumbnail=false instead of thumbnails=false.
As for the read more and source text, currently, the plugin is set to use translated text. But only a few languages are available. I’ve added the ability to manually set this text to our request list for a future update.
Forum: Plugins
In reply to: [RSS Feed Retriever] Thumbnail can’t set nofollowHello,
This has been fixed with version 1.5.5. nofollow should be set to true for all links by default. You can use dofollow=true to disable nofollow.
Forum: Plugins
In reply to: [RSS Feed Retriever] Tag nofollowHello,
This has been fixed with version 1.5.5. nofollow should be set to true for all links by default. You can use dofollow=true to disable nofollow.
Forum: Reviews
In reply to: [Blog2Social: Social Media Auto Post & Scheduler] Version 5.8.1 FailYou can download older versions at the bottom of this page: https://www.ads-software.com/plugins/blog2social/advanced/
Forum: Plugins
In reply to: [RSS Feed Retriever] RSS Error – But Feed ValidatesNo problem! Let me know if you have any other issues.
Forum: Plugins
In reply to: [RSS Feed Retriever] RSS Error – But Feed ValidatesYes, that is the default RSS widget built into WordPress. Are you on the same server as the DCTC.edu website? If so, it could be that there is some kind of internal system that’s blocking the request.