Akhil R S
Forum Replies Created
-
Okay, I understood there may be chance for any badly coded plugin messing up things.
So I just done a fresh wordpress installation in my iPage hosting and installed Postman. Now also test email is working, but activation email sent after user registration is not receiving.
same here. I too confused.
If the email is listed in Email Log, which means that email is sent through Postman and it’s successfully sent, Am I correct?I already tested by deactivating all the installed plugins and also tried with multiple email address still not working.
Forum: Plugins
In reply to: [Facebook] Ugly HTML characters in FB postHi J.K
I used the plugin function fb_strip_and_format_desc in name and caption values to clear the html characters, and its working fine for me. You can check my page here : https://www.facebook.com/keralathanima.
Can you paste the changed code here.
Forum: Plugins
In reply to: [Facebook] Ugly HTML characters in FB postI do had the same issue, As a quick solution i used the fb_strip_and_format_desc() function to trim the html characters.
https://www.facebook.com/keralathanima
Edit fb-social-publisher.php file goto line 232, use fb_strip_and_format_desc() in both name and caption array values like below
$args = array('access_token' => $fan_page_info[0][3], 'from' => $fan_page_info[0][2], 'link' => apply_filters( 'rel_canonical', get_permalink()), 'picture' => $post_thumbnail_url, 'name' => fb_strip_and_format_desc(get_the_title()), 'caption' => fb_strip_and_format_desc(apply_filters( 'the_excerpt', get_the_excerpt() )), 'description' => fb_strip_and_format_desc( $post ), 'message' => $fan_page_message, );Hope this will help to fix the issue.Thanks