Duuk
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] BPS 2.5 caused admin dashboard to stop workringI’m very interested in this fix as well. Thanks for the work!
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] css doesn't seem to be loadingThanks. You are correct that the parent theme css was not loading.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdfYour english is great – I understood you perfectly.
Copying parent-theme css into child-theme css is discouraged, so I’m looking for a way not to do that. Plus, with themes like mine, I would have to copy in three or four or five css files into the child-theme. That kinda ruins the purpose of a child theme.
wp_head() may be the better way for improved compatibility with more themes.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdfOkay, you were right that the parent stylesheet wasn’t getting loaded. Unfortunately, my theme loads several stylesheets, which makes it a little harder to hardcode into the dkpdf-index.php each stylesheet. Then changing themes would also break the stylesheet references.
I looked at how normal pages get the stylesheets loaded, and it goes back to wp_head() function. Why have you decided against using that? It does load many other plugin related information as well, but it didn’t seem to mess up my output and I have too many plugins :).
My dkpdf-index.php looks like this (in the head section), and it works much more like what I would have expected my output originally – I also have added a separate dkpdf stylesheet in my theme directory for any additional tweaks, which is then loaded in this section directly:
<head> <!-- wp_head --> <?php wp_head(); ?> <!-- wp_head end --> <link type="text/css" rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/dkpdf-style.css" media="all" /> <style type="text/css"> body { background: #FFF; font-size: 100%; } </style> </head>
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdfIt appears it may be grabbing the right style sheet (including the parent code already), but I have other plugins that change the style as well. I think that may be causing the unexpected css issues.
What would be ideal, at least for me, is a different query, like ?pdfprint=xxx where the dkpdf templates are used to make an html page (that I can then look at the output and correct the styles more easily) Rather than having to guess to some degree at what is overriding what.
I’m not going to copy my parent styles into my child theme. that is very frowned upon. Instead one could add a line to the template grabbing the parent style css directly. I tried that with no change, so I think it must be grabbing it already. Not sure until I can see the actual html output of your templates. I’ll see if I can figure that out, but I doubt it.
Thanks again for the quick response.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdfHere are the css lines in the dkpdf-index template, the first is your line and the second I added to try to fix this (I have a special print.css already made):
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<link type="text/css" rel="stylesheet" href="<?php echo get_stylesheet_uri(); ?>" media="all" /> <link type="text/css" rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>"/print.css" media="all" />
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Expected generation time?Mine is nearly instant.
I don’t think it has to do with the webhost. Gmail says it is due to the content of the email. The webhost is not blacklisted, has correct spf=pass and DKIM.
I don’t have the volume (and no revenue) to justify a premium postmatic subscription, as a not-for-profit, religious website.
I use SMTP through mailgun for more reliable delivery, similar to your premium version. Your plugin then circumvents my reliable SMTP setup and goes with whatever the server does for email.
Since you are circumventing a very common WordPress practice of using SMTP through plugins like Postman, WP-SMTP, Easy SMTP, etc., I would recommend you build that bypassed functionality directly into your plugin.
Forum: Plugins
In reply to: [DK PDF - WordPress PDF Generator] Jetpack Share button printed on the pdfThe code worked for me – I had the same problem.
Forum: Themes and Templates
In reply to: [Freak] Disable Right-Swipe Open Menu on Touch ScreensWell, due to the lack of response from the theme author, I dug into his JavaScript. The slideout menu uses a library that has an option to disable the slideout touch part of the functionality.
You will need to modify the custom.js file in the js/ directory of the theme. Search for Slideout, find the section that starts like the code below, then add the “‘touch’:false” line as shown. That will stop the touch slideout. The menu button will still work.
Hopefully it works for you too. Let me know.
var slideout = new Slideout({ 'panel': document.getElementById('page'), 'menu': document.getElementById('mobile-static-menu'), 'padding': 256, 'tolerance':70, 'touch':false });
Forum: Themes and Templates
In reply to: [Freak] Wrong Post ID pulled by plugins with this themeWell, you don’t have to make am account any more, but I have replaced your custom widget and that resolved the problem. I suggest you look into the widget coding on this theme.
Forum: Plugins
In reply to: [Inline Comments] Comments not displayed and linked to wrong postTurns out it was another plugin (a theme specific widget for recent posts) that was breaking it. Thanks again Kevin, for your help and your great plugin. RESOLVED.
Forum: Themes and Templates
In reply to: [Freak] Disable Right-Swipe Open Menu on Touch ScreensI would also love to have the right-swipe disabled.
Forum: Themes and Templates
In reply to: [Freak] Wrong Post ID pulled by plugins with this themeLooks like yes.
Forum: Themes and Templates
In reply to: [Freak] Wrong Post ID pulled by plugins with this themeYes, I’m sure. You can try using the inline commenting system. Click on the + next to any paragraph. When you look at the source for the “Post Comment” form on the inline commenting system, you will see the wrong post ID, resulting in comments being attached to the wrong post.