Cristopher Dino
Forum Replies Created
-
Forum: Plugins
In reply to: [Post PDF Export] Fatal error when trying to activate pluginHi aussiedude,
Thank you for using my plugin maybe the php version of your live and local is different. The plugin prefer PHP 5+ version
Forum: Plugins
In reply to: [Post PDF Export] Non english post export problemsHi qmor,
Thank you for using my plugin.
For your concern, Sorry but this is a limitation of the library i used. Special characters is not yet working on this plugin. But, I will review and check if i can do alternative about this concern.Forum: Plugins
In reply to: [Post PDF Export] Single Post Download from Blog pageHi ddenhartog,
You can just need to tick the checkbox “Enable single post download” on the plugin settings. This option is under “Post PDF Export > Post PDF Export Options”.
For other ways to put download button on your post you can check the plugins documentation here https://cmdino.com/post-pdf-export/
If you liked my plugin, i appreciate if you could give it a rate.
Thanks you.
Forum: Plugins
In reply to: [Post PDF Export] Formatting questionHi aussiedude,
Thank you for using my plugin. For your concern. You need to use “Text” tab on post editor and apply line break HTML tags(
) instead of “Visual” tab.If you liked the plugin, i appreciate if you could give it a rate.
Forum: Reviews
In reply to: [Post PDF Export] Error at activationHi Sev,
I’m Cristopher, I’m the developer of this plugin. I investigate the plugin with regards to this bug you found but i haven’t seen any problem with the activation. Can you tell what actions you performed when this happens?
Thank you
Forum: Plugins
In reply to: [Post PDF Export] Does it work for pages?Hi Mike,
I’m Cristopher the developer of the plugin. I thank you for using my plugin.
The plugin does not support page download. But, i’m working on the new version. Download of page is one of the option on it. I don’t know when can i publish it yet. I will let you know when it is up!
Also, If you liked the plugin i appreciate if you could give it a rate.
You can rate it here: https://www.ads-software.com/support/view/plugin-reviews/post-pdf-export
Forum: Plugins
In reply to: [IE CSS3 Support] Working out my sites' IE-compatibility bugs…Hi,
I have check your code(html/css) and i have found out that there are some specialized instance for the navigation to work. Unfortunately. the plugin has no control on this instance. But you can try this steps.
After activating the plugin, open you theme’s main style, which usually named as “style.css” and add this code on the bottom.
.nav-menu { position: inherit !important; } .nav-menu .children { z-index: 999 !important; }
Forum: Plugins
In reply to: [Post PDF Export] Remove Download at top of page?Hi internationalkenpo,
Thank you for using my plugin.
I made some revision in the plugin with. Please download the plugin and replace your current post pdf export file and check if it solves your problem.
if this did not work, maybe you place the shortcode on the wrong place. If you use the shortcode on a add_shortcode function you need to apply condition to it.
You can try this code:
if( get_post_type( THE_ID_OF_THE_POST )=='post' ){ add_shortcode('[pdfex]'); }
Give it a try! let me know if it worked.
Also, If you liked the plugin, I’ll Appreciate if you could give it a rate.
You can rate it here:
https://www.ads-software.com/support/view/plugin-reviews/post-pdf-exportThank you
Forum: Plugins
In reply to: [Post PDF Export] Move download iconHi,
Can you state what actions you apply before this happned?
Can you try disabling the plugin and check if theres a error printing while the debug mode is on?
The plugin might failed becouse your site has error wrinted with the debug mode.
Forum: Plugins
In reply to: [Post PDF Export] Move download iconHi Viccon30,
I’m Cristopher, I’m the developer of the plugin. Thank you for using my plugin.
Yes, you can position the download button.But, it requires a bit of coding. You can use this code:
<?php echo pdfex_post_download(); ?>
Place this code in you theme. it will display the button. You need to place it under the post loop.
It looks like this:
<?php while ( have_posts() ) : the_post(); ?>
Here is the user guide of the plugin. You can use this for reference:
https://cmdino.com/post-pdf-export/If you liked the plugin, I’ll appreciate if you could give it a rate.
You can rate it here:
https://www.ads-software.com/extend/plugins/post-pdf-export/Thank you!
Forum: Plugins
In reply to: [IE CSS3 Support] Drop down menu hidden after plugin activationHi Marvalis,
I’m Cristopher, The developer of the plugin. I have check your code(html/css) and i have found out that there are some specialized instance for the navigation to work. Unfortunately. the plugin has no control on this instance. But you can try this steps.
I hope you have background in css and wordpress theme:
After activating the plugin, open you theme’s main style, which usually named as “style.css” and add this code on the bottom.
#container { position: relative; z-index: 1 !important; }
Give it a try! let me know if it worked.
I you liked my plugin. I’ll appreciate if you could give it a rate.
You can rate it here: https://www.ads-software.com/support/plugin/ie-css3-supportForum: Plugins
In reply to: [IE CSS3 Support] shadow too darkHi LuukPotman,
Thank you for using my plugin. I’m Cristopher, The developer of the plugin. Sorry for the late reply.
The plugin does not support “rgba” color. In which you used. But you can use CSS HEX color code that has a format like this “#000000″(color black).
For this plugin to work. you need to change your code under “#wrapper”:
box-shadow: 0 0 18px rgba(0, 0, 0, 0.4);
to
box-shadow: 0 0 18px #000004;
rgba code
0, 0, 0, 0.4
is equal to#000004
so your code must look like this:
#wrapper { background: none repeat scroll 0 0 #F8F8F8; box-shadow: 0 0 18px #000004; margin: 0 auto; max-width: 1140px; overflow: hidden; position: relative; }
If this works for you. I would appreciate if you could rate the plugin. You can rate it here: https://www.ads-software.com/support/plugin/ie-css3-support
Forum: Plugins
In reply to: [IE CSS3 Support] Error adding Stylesheet. Invalid file format.Hi Leejosepho,
Thank you for using my plugin. I’m Cristopher, The developer of the plugin. Sorry for the late reply.
I think the border problem is not in the plugin. I have checked your CSS code( https://www.nnywriters.com/wp-content/themes/ChapterTwelve/style.css ). I found out that your border( border: 8px solid #69c ) is under a media query condition( @media screen and (min-width: 960px) { ). IE do not support media query condition. I suggest you put the code( border: 8px solid #69c; ) outside the condition( @media screen and (min-width: 960px) { ).
Your code must look like this:
body .site { border: 8px solid #69c; } @media screen and (min-width: 960px) { body { background-color: #e6e6e6; /* light gray: https://www.colorhexa.com/e6e6e6 */ } body .site { /* added for certain browsers */ padding: 0 24px; /* 40px; */ padding: 0 1.714285714rem; /* 2.857142857rem; */ margin-top: 24px; /* 48px; */ margin-top: 1.714285714rem; /* 3.428571429rem; */ margin-bottom: 24px; /* 48px; */ margin-bottom: 1.714285714rem; /* 3.428571429rem; */ -moz-border-radius: 20px; -webkit-border-radius: 20px; -khtml-border-radius: 20px; border-radius: 20px; box-shadow: 0 2px 6px rgba(100, 100, 100, 0.3); /* very dark: https://www.netgfx.com/RGBaZR/ */ max-width: 100%; /* added to attain full-width */ }
Give it a try! let me know if it worked for you.
Also, If you liked the plugin, I’ll appreciate if you could give it a rate here:Forum: Plugins
In reply to: [IE CSS3 Support] wrong corners are displaying roundIf this works for you. i’ll appreciate if you could give the plugin a rating here https://www.ads-software.com/extend/plugins/ie-css3-support/
Thank you
Forum: Plugins
In reply to: [IE CSS3 Support] wrong corners are displaying roundHi Andrew,
I’m Cris, the developer of this plugin.
The code above is not yet supported on this plugin. But, you can convert your code into something like this:
-webkit-border-radius: 10px 10px 0px 0px;
Take a look on this to understand it:
-webkit-border-radius: 10px(top left) 10px(top right) 0px(bottom right) 0px;(bottom left)
Use this to make the code compatible in all browsers:
-moz-border-radius: 10px 10px 0px 0px; -webkit-border-radius: 10px 10px 0px 0px; -khtml-border-radius: 10px 10px 0px 0px; border-radius: 10px 10px 0px 0px;