Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi Marcus,
    Thanks for your message.
    I’ll take a look at the ‘no author’ request in a couple of days. I thinks that some hooks would do the trick.
    For the image’s aspect ratio, you can easily achieve this with some extra CSS.

    .feedzy-rss .rss_item .rss_image,
    .feedzy-rss .rss_item .rss_image span{
    	width:150px !important;
    }

    Cheers

    Hi,
    I’m back with an answer to your request. Since 2.2.2, you have a new hook available: feedzy_meta_args
    It let you handle the meta line.
    So, as you want to hide the author’s name, you have to use this function:

    function bweb_feedzy_meta_args($metaArgs, $feedURL){
    	$metaArgs['author'] = false;
    	return $metaArgs;
    }
    add_filter('feedzy_meta_args', 'bweb_feedzy_meta_args', 9, 2);

    More examples are available on the documentation page.

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Feature requests: just date (no author) and set width and height of image’ is closed to new replies.