redcocker
Forum Replies Created
-
Hi, kits san
I may be mistaken, because my language is LTR, but I think like as follows.
1. Please go to the setting panel.
2. Enter following css into “Stylesheet” and enable “Use additional CSS”..syntaxhighlighter, .syntaxhighlighter a, .syntaxhighlighter div, .syntaxhighlighter code, .syntaxhighlighter table, .syntaxhighlighter table td, .syntaxhighlighter table tr, .syntaxhighlighter table tbody, .syntaxhighlighter table thead, .syntaxhighlighter table caption, .syntaxhighlighter textarea { direction: ltr; }
Hi, theshae san
Try to re-inatsll Development Version.
https://downloads.www.ads-software.com/plugin/post2pdf-converter.zip
It has new setting option to hide title and new filter to hide own shorcode.
Hi, theshae san
I will introduce release candidate to you here in few days and release ver 0.4 about a week after.
Hi, eshae san
Is there a way to not have the link to get the pdf appear in the pdf it generates?
Are you using “shortcode” to insert the download link into posts?
I will resolve it in the next release.Also, what about removing the title?
I will add new setting option to hide it in the next release.
I released ver. 0.3.3.
No longer need to edit /wp-content/plugins/post2pdf-converter/post2pdf-converter.php.To use your own icon, you can set a file name to “Custom icon file name” option.
And please disable “CSS for download link” option before your own CSS is added.
Hi, almstudio san
Sorry, now, there is no easy way.
Please edit /wp-content/plugins/post2pdf-converter/post2pdf-converter.phpLine 549
$link = '<div id="downloadpdf"><a href="'.$this->post2pdf_conv_plugin_url.'post2pdf-converter-pdf-maker.php?id='. $post->ID.'"'.$nofollow.'><img src="'.$this->post2pdf_conv_plugin_url.'img/pdf'.$this->post2pdf_conv_setting_opt['icon_size']. '.png" alt="download as a pdf file" /> '.$this->post2pdf_conv_setting_opt['link_text'].'</a></div>';
If logo.png is put in wp-ontent/images/ directory, you can re-write it as follows.
$link = '<div id="YOUR_ID"><a href="'.$this->post2pdf_conv_plugin_url.'post2pdf-converter-pdf-maker.php?id='.$post->ID. '"'.$nofollow.'><img src="'.WP_CONTENT_URL.'/images/logo.png" alt="download as a pdf file" /> '. $this->post2pdf_conv_setting_opt['link_text'].'</a></div>';
If you need, you can also add id and class attributes.
And put your own CSS in your theme css.
Hi, lfgu san
WP SyntaxHighlighter depends on WordPress APIs.
It is difficult to make it work with bbPress 1.x.Please use bbPress 2.x with WordPress.
I got same warning in ver 1.51 when I run the scan.
Forum: Plugins
In reply to: 404 error only on stats pageSame problem on my sites.
I’m using WordPress 3.3.1 and Jetpack 1.2.2
Hi, Hiranthi Molhoek-Herlaar san
For security reason, WP Syntaxhighlighter escapes your code inside
<pre>
tag to HTML entities.It’s a feature.
Before you install WP Syntaxhighlighter, If your posts have
<pre>
tag elements and contents inside them are not eacaped perfectly, this plugin escapes contents inside them to HTML entities.So: with the plugin enabled all < in the post (whether they’re inside pre-tags or not) are getting changed to > ; (minus the space ofcourse), which also affects the frontend (since everything inside pre-tags are getting displayed as is).
It’s a strange result.
If so, even<pre>
tag will be escaped to HTML entities.
This plugin affects only sourcesode inside<pre>
tag.Please take a closer look.
When all plugin are disabled except WP Syntaxhighlighter, does it work?
But: when I disable the WP Syntaxhighlighter plugin code between pre-tags aren’t getting changed.
When you save your post, this plugin escapes your code inside
<pre>
tag to HTML entities.(before storing your post data in DB)If you saved your post before disable it, your sourcecde can’t turn back.
Hi, Hiranthi Molhoek-Herlaar san
When I disable the plugin the content goes through well (so for a new post today I disabled the plugin, edited the code inside the pre-tag, saved the post and re-enabled the plugin). It’s really annoying because it’s making the code hard to read.
It’s no wonder.
After you disabled it , Don’t edit your code.More precisely, you need to escape your code to HTML entities.
And you need to use HTML editor.(Don’t use Visual editor!)<pre>Escaped code</pre>
When WP SyntaxHighlighter is enabled, WP SyntaxHighlighter do it automatically.
Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] Request a handy featureHi, Janvil san
I released ver. 0.2.3.
It has a new setting option, “Exclusion”.Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] Request a handy featureHi, Janvil san
In next release, You can set (exceptive) post_id(s) to hide download link on the posts/pages with these id(s).
I’m testing next release now.
I will release it shortly.Forum: Plugins
In reply to: [NewStatPress] [Plugin: NewStatPress] A warning when postingHi, David san
It works properly.
Thank you.
Hi Janvil san,
I don’t know why, but I found some images can’t be convert to PDF and disappear in created PDF file.
As far as I know, Creative Commons License logo causes this issue.
https://i.creativecommons.org/l/by/3.0/88×31.png
When I tested, your 4 icons(images) also caused same issue.
To resolve this isuue, please convert your 4 png file to jpeg format.
(You can convert jpeg format to png format again.)
But it doesn’t mean that this plugin doesn’t support png format.And, To line up images on same row, you need to add height and width attributes into
<img>
tags.<img src="https://example.com/img/AltanaESP.jpg" height="16" width="16" /> <a href="https://www.altanaesp.net/">AltanaESP Pty Ltd</a><img src="https://example.com/img/AltanaCommunity.jpg" height="16" width="16" /> <a href="https://www.altanacommunity.co.za/">AltanaCommunity</a><img src="https://example.com/img/AltanaCorporate.jpg" height="16" width="16" /> <a href="https://www.altanamonitor.co.za/">AltanaMonitor</a><img src="https://example.com/img/AltanaAcademy.jpg" height="16" width="16" /> <a href="https://www.altanaacademy.co.za/">AltanaAcademy</a>