redcocker
Forum Replies Created
-
Hi, djdunn san
Are you using shortdoce function of this plugin or shortcode for another plugin?
Forum: Plugins
In reply to: [CodeMirror for CodeEditor] [Plugin: CodeMirror for CodeEditor] Word WrappingHi Josh Maxwell san,
Thank you VERY MUCH!
If you solve it, please contact me via contact form.Forum: Plugins
In reply to: [CodeMirror for CodeEditor] [Plugin: CodeMirror for CodeEditor] Word WrappingHi Josh Maxwell san
I may add it in the future release.
But, When I tried it, I don’t succeed it.Hi BBBThunda san
Thank your for your report.
Could you tell me all notice messages?
And let me know when(Where) they occur.Hi, djeyewater san
>So you need to edit kses.php to allow adding a class to pre.
This plugin is designed with consideration for KSES filter.
It adds some tags and attributes to KSES as allowed tags and attributes automatically.Did you esit a post as a registerd user belongs to Administrators or Editors?
>it is not wrapping long lines.
Go to setting panel.
Change “Library version” to 2.1.382.
And enable “Wrap lines”.Hi, alxvallejo san
I don’t check up but this plugin can’t handle some CSS properties.
It may cease this problem.Hi, vehicros san
“redcocker” means my dog, the red color of English cocker spaniel.
But He had diedHi, hd.design san
For now, this plugin can’t handle external CSS file.
Only inline CSS is applied to PDF.
But it can’t handle some CSS properties.So, It is not necessarily mean that you can control PDF layout by CSS.
Hi, alxvallejo san
As an example, here is just a sample of the output with the first table row of html below. The classes of the table don’t mean anything since they’re tied to MS Word but the background colors and fonts are what need to be preserved. The first row should have a background color of #0099cc (blue) but the output is like this:
Do you mean to say inline CSS(background color of #0099cc) is not applied to
PDF?Hi, alxvallejo san
Modify wp-content/plugins/post2pdf-converter/post2pdf-converter-pdf-maker.php.
All you need to do is add following code around line 339
if (function_exists('includePosts')) { $content = includePosts($content); }
Hi, alxvallejo san
If the plugin doesn’t depend on WP shotcode API and it has own shortcode parser, shotrcode can’t parse by POST2PDF Converter.
I will check sourcecode of embed post plugin.
Are you using following plugin?
Hi, Milan Petrovic san
Give me a little more time.
I will check it out.Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] background imagehI, ooohh04 san
This is just an example code.
Please add following code into /post2pdf-converter/post2pdf-converter-pdf-maker.php line 14
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Remove following code from /post2pdf-converter/post2pdf-converter-pdf-maker.php line 373-374
require_once('tcpdf/config/lang/'.$config_lang.'.php'); require_once('tcpdf/tcpdf.php');
Replace /post2pdf-converter/post2pdf-converter-pdf-maker.php line 392-394 with following code.
$pdf = new POST2PDF_Converter_PDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', true, false); } else { $pdf = new POST2PDF_Converter_PDF(PDF_PAGE_ORIENTATION, PDF_UNIT, PDF_PAGE_FORMAT, true, 'UTF-8', false, false);
Replace /post2pdf-converter/tcpdf/config/tcpdf_config.php line 95-99 with following code.
if (!defined('K_PATH_FONTS') && $POST2PDF_Converter_PDF_Maker->post2pdf_conv_setting_opt['font_path'] == 1) { define('K_PATH_FONTS', WP_CONTENT_DIR.'/tcpdf-fonts/'); } else { define ('K_PATH_FONTS', K_PATH_MAIN.'fonts/'); }
Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] background imageHi, ooohh04 san
I’ll add this feature in future release.
Forum: Plugins
In reply to: [POST2PDF Converter] [Plugin: POST2PDF Converter] displaying post meta dataHi, novic7 san, diezel san
Sorry, I made a simple mistake.
Please add following code instead of previous code.
$key_value = get_post_meta($post_id, 'YOUR_KEY', true); $content = $content.$key_value;
or
$key_value = get_post_meta($post_id, 'YOUR_KEY', true); $content = $key_value.$content;