Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Themeisle

    (@themeisle)

    Hey @denisekk,

    The code is added for the shortcode/widget output and not for your RSS feed output. For the moment we do not provide such thing.

    Let me know if you need anything else.

    Thanks !

    Thread Starter denisekk

    (@denisekk)

    But I DO want to use it with the shortcode – how do I do that? There isn’t an option for a read more link in the widget either after adding this code. Obviously, I am missing a step here. Thanks.

    Plugin Author Themeisle

    (@themeisle)

    Hey @denisekk,

    Can you give me an example of page and shortcode you are using to accomplish this in order to better understand the issue ?

    Thanks !

    Thread Starter denisekk

    (@denisekk)

    I want to add a “Read More” link to each article I pull in using Feedzy. (Yes, I know the title is itself a link to the article but the powers that be also like having a read more link). So if the shortcode is this: [feedzy-rss feeds=”https://www.website.com/feed” max=”1″ feed_title=”no” title=”100″ meta=”no” summary=”no” thumb=”yes” size=”125″ ] is there something along the lines of a readmore=”yes” part I should be adding to it? What exactly does the code I referenced above do, if not that?

    Plugin Author Themeisle

    (@themeisle)

    Hey @denisekk,

    You can use this code :

    
    function tifd_feedzy_readmore( $content, $link, $feedURL ) {
        $content .= '<a href="' . $link . '" target="_blank">' . __('Read more', 'yourTextDomain') . ' &rarr;</a>';
        return $content;
    }
    add_filter( 'feedzy_summary_output', 'tifd_feedzy_readmore', 9, 3 );

    And we will append a readmore link to the end of each item content summary.

    Let me know if you need anything else.

    Thanks !

    Thread Starter denisekk

    (@denisekk)

    Seriously??? In my FIRST post I say that I have already added that code and it isn’t working. I give up. On to another product.

    Plugin Author Themeisle

    (@themeisle)

    Hey @denisekk,

    Sorry for misunderstanding but is not the same code.

    However, good luck with your work.

    Thanks !

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘How to add read more link’ is closed to new replies.