Title: Duuk's Replies | WordPress.org

---

# Duuk

  [  ](https://wordpress.org/support/users/duuk/)

 *   [Profile](https://wordpress.org/support/users/duuk/)
 *   [Topics Started](https://wordpress.org/support/users/duuk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/duuk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/duuk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/duuk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/duuk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/duuk/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/duuk/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/duuk/replies/page/3/?output_format=md) [→](https://wordpress.org/support/users/duuk/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BulletProof Security] BPS 2.5 caused admin dashboard to stop workring](https://wordpress.org/support/topic/bps-2-5-caused-admin-dashboard-to-stop-workring/)
 *  [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [8 years, 10 months ago](https://wordpress.org/support/topic/bps-2-5-caused-admin-dashboard-to-stop-workring/page/2/#post-9514097)
 * I’m very interested in this fix as well. Thanks for the work!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] css doesn't seem to be loading](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading/#post-6847560)
 * Thanks. You are correct that the parent theme css was not loading.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdf](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/#post-6847518)
 * Your 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdf](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/#post-6847464)
 * Okay, 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdf](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/#post-6847390)
 * It 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] css doesn't seem to be loading on pdf](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/css-doesnt-seem-to-be-loading-on-pdf/#post-6847264)
 * Here 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](http://codex.wordpress.org/Forum_Welcome#Posting_Code).]_
 *     ```
       <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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] Expected generation time?](https://wordpress.org/support/topic/expected-generation-time/)
 *  [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/expected-generation-time/#post-6846754)
 * Mine is nearly instant.
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[Replyable - Subscribe to Comments and Reply by Email] Great idea, 2.0 is great so far](https://wordpress.org/support/topic/great-idea-not-ideal-execution/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/great-idea-not-ideal-execution/#post-8038779)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[DK PDF - WordPress PDF Generator] Jetpack Share button printed on the pdf](https://wordpress.org/support/topic/jetpack-share-button-printed-on-the-pdf/)
 *  [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/jetpack-share-button-printed-on-the-pdf/#post-6824223)
 * The code worked for me – I had the same problem.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Freak] Disable Right-Swipe Open Menu on Touch Screens](https://wordpress.org/support/topic/disable-right-swipe-open-menu-on-touch-screens/)
 *  [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/disable-right-swipe-open-menu-on-touch-screens/#post-6439710)
 * Well, 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Freak] Wrong Post ID pulled by plugins with this theme](https://wordpress.org/support/topic/wrong-post-id-pulled-by-plugins-with-this-theme/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wrong-post-id-pulled-by-plugins-with-this-theme/#post-6664297)
 * Well, 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Inline Comments] Comments not displayed and linked to wrong post](https://wordpress.org/support/topic/comments-not-displayed-and-linked-to-wrong-post/)
 *  [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/comments-not-displayed-and-linked-to-wrong-post/#post-6021792)
 * Turns 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](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Freak] Disable Right-Swipe Open Menu on Touch Screens](https://wordpress.org/support/topic/disable-right-swipe-open-menu-on-touch-screens/)
 *  [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/disable-right-swipe-open-menu-on-touch-screens/#post-6439707)
 * I would also love to have the right-swipe disabled.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Freak] Wrong Post ID pulled by plugins with this theme](https://wordpress.org/support/topic/wrong-post-id-pulled-by-plugins-with-this-theme/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wrong-post-id-pulled-by-plugins-with-this-theme/#post-6664091)
 * Looks like yes.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Freak] Wrong Post ID pulled by plugins with this theme](https://wordpress.org/support/topic/wrong-post-id-pulled-by-plugins-with-this-theme/)
 *  Thread Starter [Duuk](https://wordpress.org/support/users/duuk/)
 * (@duuk)
 * [10 years, 9 months ago](https://wordpress.org/support/topic/wrong-post-id-pulled-by-plugins-with-this-theme/#post-6664067)
 * Yes, 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.

Viewing 15 replies - 1 through 15 (of 32 total)

1 [2](https://wordpress.org/support/users/duuk/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/duuk/replies/page/3/?output_format=md) [→](https://wordpress.org/support/users/duuk/replies/page/2/?output_format=md)