redcocker
Forum Replies Created
-
Hi, Janvil san
Did you get a error when the changes were saved?
e.g.: Invalid value. Settings could not be saved….If you can, please send your code copied into “add signature” box to me.
Contact form: https://www.near-mint.com/blog/contact
Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] TCPDF ERRORHi, tammamkoujan san
>in my website I have custom post type with extra fields when
>exporting to pdf the plugin read only the post text and ignore the
>custom fields
>is there any solution for that.I will seek a solution.
>also I have a note about the file name if the post title in Arabic
>the file name be an array of “_”.You can change file name to resolve this.
1. Go to the plugin’s setting panel.
2. You will find “File name” option in “2. PDF Settings” section
3. Change it to “Post id”Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] TCPDF ERRORHi, tammamkoujan san
Please re-install Development Version.
Development Version: https://downloads.www.ads-software.com/plugin/post2pdf-converter.zip
To resolve this issue, I used ob_clean().
But I should use ob_end_clean() instead.If you still have the problem, please report it.
Forum: Plugins
In reply to: [WP SyntaxHighlighter] [Plugin: WP SyntaxHighlighter] brokenHi, goblooge san
I tested WP SyntaxHighlighter 1.7.1 in multisite environment, using same theme and it worked well.
https://www.chrishappens.com/sharing/bloghappens/
I checked your source and I found “SyntaxHighlighterPro” plugin is activated.
https://www.ads-software.com/extend/plugins/syntaxhighlighterpro/
If you activate both “WP SyntaxHighlighter” and “SyntaxHighlighterPro” at once, they can’t work.
Please disable “SyntaxHighlighterPro” plugin in your site(or network).
Forum: Plugins
In reply to: [WP SyntaxHighlighter] [Plugin: WP SyntaxHighlighter] brokenHi, goblooge san
Sorry, I have no multisite testing environment now.
Give me a little more time.If you can, please post your sourcecode and displayed sourcecode here.
Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] empty pdfHi, henry.hef san
Thnak you for your reply.
Sorry, Now I have no idea.
I’ll seek a cause for this issue.Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] empty pdfHi, henry.hef san
First, update to 0.2.1.
If it doesn’t work still, try to reset /wp-content/plugins/post2pdf-converter/tcpdf/cache directory permissions to 755( or 777).
This plugin writes temporary files(images) into /wp-content/plugins/post2pdf-converter/tcpdf/cache.
Forum: Plugins
In reply to: [WP SyntaxHighlighter] [Plugin: WP SyntaxHighlighter] brokenHi, madcap_loon san
I fixed this issue.
Please re-install Development Version.
Development Version: https://downloads.www.ads-software.com/plugin/wp-syntaxhighlighter.zip
Forum: Plugins
In reply to: [WP SyntaxHighlighter] [Plugin: WP SyntaxHighlighter] brokenHi, madcap_loon san
Thank you for your report.
It is caused by the filter added by WP SyntaxHighlighter.
If the sourcecode contains
$0
, this issue will be caused.
($1, $2…$n also causes other issue.)e.g.
print $0;
I will fix it in next release.
Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] empty pdfHi, henry.hef san
I think your post has no problem. Because I tested using same post and it worked.
(I can’t see your naked post in your DB. I can see only filtered post. So, I can’t say for sure that your post has no problem…)As a possibility, available memory may be not enough.
You may need to edit php.ini or otherwise to distribute enough memory to PHP runtime.
e.g.
memory_limit = 64M
Hi, CrtWatcha san
I checked your source of posts and now I know the problem.
The Following code is your simplified post source.
<p>Description 1</p> <h1><a href="https://www.sample.com/xxx" target="_blank">Title</a></h1> <p> Description 2<br />Description 3 </p> <h4>Description 4</h4> <p><a href="https://www.sample.com/wp-content/uploads/2011/10/1.jpg"><img class="MYclass" title="Image1" src="https://www.sample.com/wp-content/uploads/2011/10/1.jpg" alt="" width="672" height="924" /></a><br /> <a href="https://www.sample.com/wp-content/uploads/2011/10/2.jpg"><img class="Myclass" title="Image2" src="https://www.sample.com/wp-content/uploads/2011/10/2.jpg" alt="" width="672" height="924" /></a><a href=https://www.sample.com/wp-content/uploads/2011/10/3.jpg"><img class="Myclass" title="Image3" src="https://www.sample.com/wp-content/uploads/2011/10/3.jpg" alt="" width="672" height="924" /></a><a href="https://www.sample.com/wp-content/uploads/2011/10/4.jpg"><img class="Myclass" title="Image4" src="https://www.sample.com/wp-content/uploads/2011/10/4.jpg" alt="" width="672" height="924" /></a></p>
A
<br />
tag is placed after 1st image block.(That is a critical point.)Look 2nd-4th image blocks.
No<br />
tags are placed after each image block.POST2PDF Converter places them in same one row and fails.
As your images is large, POST2PDF Converter can’t place them in same one row and they will appear as some blank pages on the PDF.
As below, If you place
<br />
tag after each image blocks, POST2PDF Converter can convert properly.<p>Description 1</p> <h1><a href="https://www.sample.com/xxx" target="_blank">Title</a></h1> <p> Description 2<br />Description 3 </p> <h4>Description 4</h4> <p><a href="https://www.sample.com/wp-content/uploads/2011/10/1.jpg"><img class="MYclass" title="Image1" src="https://www.sample.com/wp-content/uploads/2011/10/1.jpg" alt="" width="672" height="924" /></a><br /> <a href="https://www.sample.com/wp-content/uploads/2011/10/2.jpg"><img class="Myclass" title="Image2" src="https://www.sample.com/wp-content/uploads/2011/10/2.jpg" alt="" width="672" height="924" /></a><br /> <a href=https://www.sample.com/wp-content/uploads/2011/10/3.jpg"><img class="Myclass" title="Image3" src="https://www.sample.com/wp-content/uploads/2011/10/3.jpg" alt="" width="672" height="924" /></a><br /> <a href="https://www.sample.com/wp-content/uploads/2011/10/4.jpg"><img class="Myclass" title="Image4" src="https://www.sample.com/wp-content/uploads/2011/10/4.jpg" alt="" width="672" height="924" /></a><br /></p>
In addition, you need to modify following file to make images smaller on the PDF.
Line 218 /wp-content/plugings/post2pdf-converter/tcpdf/config/tcpdf_config.php
define ('PDF_IMAGE_SCALE_RATIO', 1.25);
->
define ('PDF_IMAGE_SCALE_RATIO', 1.3.5);
I will add new option to change image size(ratio) in next release.
Hi, CrtWatcha san
POST2PDF Converter can handle multiple <img> tags.
Howerver It can’t handle all and every tags.Maybe, A specified tag encumbers converting HTML to PDF.
If you can, Let me know your site URL.
I want to check source of your posts.Here is contact form
https://www.near-mint.com/blog/contactHi, CrtWatcha san
Is POST2PDF supposed to be bringing along photos that are in the page as well as the html text?
POST2PDF Converter supports
<img>
tag.Are your images defined by
<img>
tag in your post?Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] No thatHi robotect san
Please tell me detail and your environment(WordPress version, PHP version).
Did you get any error messages?
Nothing is showing on the screen?
Shortly after installation, did you get a problem?Hi, Josh san
My pleasure.
I found a typo in my translation and revised it.
Please download zip file again.
Download: https://www.near-mint.com/blog/download/jwl-ultimate-tinymce-ja.1.6.1.zip