Travis
Forum Replies Created
-
Forum: Reviews
In reply to: [Popular Brand Icons - Simple Icons] Much Lighter Than My Themes Icons!Thank you very much for your feedback!
Forum: Plugins
In reply to: [Popular Brand Icons - Simple Icons] Letterboxd iconHello,
Sorry for the delay! Please submit all icon requests/changes to our github repo here: https://github.com/simple-icons/simple-icons/issues
Thanks!
Forum: Plugins
In reply to: [RSS Feed Retriever] Change the styleYou can change the layout via WordPress filters. Add the following code to your themes functions.php file:
function custom_rss_layout_callback( $layout ) { $layout = array( 'thumbnail', 'title', 'content', 'postdata', ); return $layout; } add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );
Forum: Plugins
In reply to: [RSS Feed Retriever] Fetch first image and place it left to the headlineHello,
This is possible by using some custom CSS. You can do something like display:flex on the wrapping element to get the image on the left and the headline on the right. Hope this helps!
Forum: Plugins
In reply to: [RSS Feed Retriever] Disable Featured Image in RSSYou can change the layout via WordPress filters. Add the following code to your themes functions.php file:
function custom_rss_layout_callback( $layout ) { $layout = array( 'title', 'content', 'postdata', ); return $layout; } add_filter( 'wp_rss_retriever_layout', 'custom_rss_layout_callback' );
Hello,
Unfortunately no, this plugin is only for displaying a feed and will not create posts.
Forum: Plugins
In reply to: [Popular Brand Icons - Simple Icons] Add search buttonHello, I’m not sure what search button you are referring to. Can you provide more details or a screenshot?
Hello,
You can control the size and color via custom CSS:
Use the following CSS code to change all icons color, size, etc.
span[class*="simple-icon"] { width: 2em; height: 2em; } span[class*="simple-icon"] svg { fill: #333; }
Forum: Plugins
In reply to: [Unlimited Elements For Elementor] How to add Item HTML 3?I’d love to know as well!
Forum: Plugins
In reply to: [RSS Feed Retriever] Problem With Data Rss Title Data ( ' )Thanks for reporting this. Please update to version 1.6.5, then clear your cache and this should fix your issue.
Forum: Plugins
In reply to: [RSS Feed Retriever] how to avoid comments in rss feedHello,
What is the feed url and shortcode you are using?
Forum: Plugins
In reply to: [RSS Feed Retriever] Problem With Data Rss Title Data ( ' )Hello,
Please post the shortcode you’re using so we can test this.
Forum: Plugins
In reply to: [RSS Feed Retriever] Image not displaying from feedHello,
There does not appear to be any images on that feed source. You will have to find another feed that has thumbnail images.
Forum: Plugins
In reply to: [RSS Feed Retriever] Random OrderingHello,
We do not currently have a method for including additional posts for randomizing. But I’ve added it as a request for a future release.
Thanks.
Forum: Plugins
In reply to: [RSS Feed Retriever] RSS Feed not updating/refreshingI’m not sure, that would be a question for whatever caching plugin or software you’re using. We have no control over external caching from the plugin level.