witho
Forum Replies Created
-
Resolved using WordPress core hooks as “wp_insert_post”.
Plugin updated and the issue is solved. Thanks!
Hello again,
I have tested your Dev version of the plugin and the error is fixed. Tell me when I will be able to update the plugin to an stable version through the WordPress update page.
Thanks!
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingSorry to bother you again but the email is still not working well.
I see that you add this line:
$messageText = str_replace("\r\n", "<br />", $messageText);And I think the right one would be this one:
$messageText = str_replace("\n", "<br />", $messageText);Test it and let me know.
Thanks again!
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingI see, tested and working like a charm.
Thanks!
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingI tested it but the same error. I check the new code and I don’t know why but the code is not replacing the “break lines” with:
<br />And instead is printing a “new line” inside the code.
Check this out and let me know.
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingBoth options are disabled as I showed you in prevous replies.
I saw this code inside your function but it is only inside this condition:
} else if(isset($basetype) && $basetype==='textarea') {And I was trying to debug and saw that my flow never enter in this condition.
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingNo, I only have “WP Mail SMTP” plugin to configure Google as my email server, tht’s it.
I managed to solve the problem by adding some code to these functions:
Inside “tags_parser” function that goes into “prepare-pdf.php” file I added this line at the end:
$contentPdf = str_replace("\r\n", "
", $contentPdf);Inside “wpcf7pdf_mail_components” filter function into “send-pdf.php” file I added this line at 999 line of code:
$messageText = str_replace("\n", "
", $messageText);I know that this mey be not the best solution and I will try to separate my changes from the core of the plugin in order to be able to update your plugin in the future, but with this changes now I can see my emails an PDF with the brek lines as it should be.
Thanks!
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingHello,
I am still having the same problem with the last version of your plugin. Here are my examples:




Thanks!
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingThis option (“Use HTML content type”) was already checked.
Everything was fine until the last updates of the plugin.
Forum: Plugins
In reply to: [Send PDF for Contact Form 7] PDF break lines not workingHello again,
The email and the PDF both are showing without the line breaks.
I saw this 2 new options but any combination of this options is showing the PDF preview without the line breaks.
Thanks!
Hi, ¿has anyone develop this new feature for the plugin?
Thanks!
Forum: Plugins
In reply to: [Polylang] Custom Post Type of all languages after update to 1.8Hi!
I have tested this development version 1.8.0.1 and my query works well again.
When do you think it will be a stable version with this issues working? I am looking forward to it.
Thanks a lot for your help and your great job with this plugin. It’s awesome!!
Forum: Plugins
In reply to: [Polylang] Translate custom post type slugHi, and is there any workaround to solve this problem?
Thanks a lot!
Forum: Plugins
In reply to: [WP FullCalendar] Different defaultview for each calendar instanceYeah,
I can hack it with something lke this:
defaultView: '<?php if(strpos($_SERVER["REQUEST_URI"], "page_name") != false){echo 'month';} else{ echo get_option('wpfc_defaultView', 'month');} ?>',Thanks a lot!