• Resolved mirettep

    (@mirettep)


    Hey,

    Is there some way of overwrite the “default” image that is coming from the rss feed site? I tried to add new thumb from my wordpress media, but its only showing some pic from the katikittis site. I?want to add my own photo. Can you help me? ??

    Here’s and example for the shorcode
    [feedzy-rss feeds=”https://katikitti.com/feed/” max=”1″ feed_title=”no” target=”_blank” refresh=”6_hours” title=”100″ meta=”yes” summary=”no” summarylength=”300″ thumb=”yes” size=”69″ default=”https://www.bonfire.fi/wp-content/uploads/2018/02/katikitti.jpg” keywords_title=”KatiKitti”]

    And another question. Is there any way that I can get rid of the “By” Word from the feed? Its not finnish word, and i tried to change the .pot file, but nothing happened :/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi There,

    Thanks a lot for using Feedzy RSS Feeds Lite. Now, for showing your default photo, and not the original feed’s photo, you need to select “No” in

    Should we display the first image of the content if it is available?

    option or simply edit the above shortcode by changing thumb="yes" to thumb="no". Let me know if this works.

    Also, can you explain more about removing “By” word? I mean from where do you want to remove this word? Author details or anywhere?

    Thanks.

    Thread Starter mirettep

    (@mirettep)

    Hey,
    That did not work :/ Its removes now the whole image if I put thumb no.

    Here’s screenshot what I mean by the “By” word.
    https://tinypic.com/r/2ec3olc/9

    How can i take it off?

    Hey,

    I understand that the default image features is not working here, and also I have reported it to our development team. This will be fixed soon.

    Also, to remove ‘By’ from the feeds, simply paste the following code to your current theme’s function.php:

    function tifd_feedzy_remove_link_matches( $matches ) {
        return $matches[2];
    }
    function tifd_feedzy_remove_link( $content, $feedURL ) {
        $pattern= '/by/iU';
        $content= preg_replace_callback( $pattern, 'tifd_feedzy_remove_link_matches', $content );
        return $content;
    }
    //Remove the author link
    add_filter( 'feedzy_meta_output', 'tifd_feedzy_remove_link', 9, 2 );

    [ Reference: https://docs.themeisle.com/article/541-how-to-remove-links ]

    Let me know if this works for you. Thanks.

    • This reply was modified 6 years, 9 months ago by Rohit Motwani.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Default image problem’ is closed to new replies.