Ram
Forum Replies Created
-
Forum: Plugins
In reply to: [Job Manager] Email Template Design to admin after user submit formin frontend-application.php file in plugin..we changed few lines like instead of Content-type: text/plain; to Content-type: text/html; and we need to add filter to set html content type.
add_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );
wp_mail( $to, $subject, $msg, $header );
remove_filter( ‘wp_mail_content_type’, ‘set_html_content_type’ );Hope it helps some one.
Forum: Plugins
In reply to: [Job Manager] Email Template Design to admin after user submit formThank you.
I got the file and I have changed to html and managed fields from App Form settings.Forum: Plugins
In reply to: [Job Manager] Email Template Design to admin after user submit formThanks for quick reply..
Present the emails which are going to admin email which after user submits application are text/plain emails so is there a chance of text/html because we need to change the email design..one example is if user upload any file you are uploading that file to media and preparing URL that is fine. And when in email this is displaying as a URL instead of any anchor tag to download directly from mail like<a href="mediaurl">Download CV</a>
Hope this information will help us.
Forum: Plugins
In reply to: [Facebook Comments] Facebook comments in wordpress ajaxOk..thank. will try from theme. The thing is to know just any js function or any facebook script we can call in ajax success function so it will work I think. For that one I am searching.
Forum: Plugins
In reply to: [TweetScroll Widget] 414 Request-URI Too Long ErrorThanks for your help..came to know that we can achieve the longest uri 414 issue..from changing get to post.
And in jQuery we have $.getJSON but not $.postJSON() method so we need to use like below
// Send the request
$.post(‘script.php’, data, function(response) {
// Do something with the request
}, ‘json’);like that we need to change our js and it works..
Thank you ??
Forum: Plugins
In reply to: [TweetScroll Widget] 414 Request-URI Too Long ErrorThanks here is the site link https://www.pinkelephant.nl/ can you please check and let me know.
Thanks in advance