Viewing 1 replies (of 1 total)
  • Plugin Author Lax Mariappan

    (@lakshmananphp)

    Hi,

    Seems to be issue with the html entities.

    Try using html_entity_decode() function.

    Edit the plugin file, go to line number 99.

    Replace this

    $desc = str_replace('href="', 'href="https://www.facebook.com', $desc_feed);

    with this

    $desc = html_entity_decode(str_replace('href="', 'href="https://www.facebook.com', $desc_feed));

    Hope this helps!

    If any more issue please let me know

Viewing 1 replies (of 1 total)
  • The topic ‘Escaped Characters’ is closed to new replies.