• Resolved Carolyn Melo

    (@nubiesan)


    I am trying to insert the read more button in the feed posts. I found the CSS code, but I don’t know what I should change in the code to make it link to my site. I assume I put the code in the additional css block in the plugin.

    Can you show me what to change in the code?

    function bweb_feedzy_readmore( $content, $link, $feedURL ) {

    $content = str_replace( ‘[&hellip;]’, ‘<a href=”‘ . $link . ‘” target=”_blank”>’ . __(‘Read more’, ‘yourTex

    tDomain’) . ‘ &rarr;</a>’, $content ); return $content;

    }

    add_filter( ‘feedzy_summary_output’, ‘bweb_feedzy_readmore’, 9, 3 );

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Support Poonam Namdev

    (@poonam9)

    Hi @nubiesan,

    You can add the mentioned code to your theme’s functions.php file or create a site-specific plugin by following the instructions in?this?guide.

    Hope it helps.

    Thread Starter Carolyn Melo

    (@nubiesan)

    I’m still not sure how to do this. I looked in the documentation, but it is somewhat beyond me. I will keep trying.

    Plugin Support Poonam Namdev

    (@poonam9)

    Hi @nubiesan,

    If you are having trouble in create a site specific plugin, you can simply add the code in the functions.php file of your theme. However, I recommend you create a full back up of you site before editing the theme file.

    Hope it helps.

    Thread Starter Carolyn Melo

    (@nubiesan)

    thanks, I will try that

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.