Title: Dan Miller Coding's Replies - page 2 | WordPress.org

---

# Dan Miller Coding

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 16 through 30 (of 32 total)

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMNTCS Quantity Increment Buttons for WooCommerce] Last Update buttons don’t work](https://wordpress.org/support/topic/last-update-buttons-dont-work/)
 *  [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/last-update-buttons-dont-work/#post-14130914)
 * Then most likely you have an issue with server cache. Or the theme or a plugin
   is overriding the function.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMNTCS Quantity Increment Buttons for WooCommerce] Last Update buttons don’t work](https://wordpress.org/support/topic/last-update-buttons-dont-work/)
 *  [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/last-update-buttons-dont-work/#post-14124718)
 * It might be because the functions.php file is not being read properly.
    I made
   this functions into a plugin. You can download the plugin here: [http://danmillercoding.com/plugins/smntcs-woocommerce-quantity-buttons-fix.zip](http://danmillercoding.com/plugins/smntcs-woocommerce-quantity-buttons-fix.zip)
   Install, activate and it should work. Let me know if it works! Dan
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMNTCS Quantity Increment Buttons for WooCommerce] Last Update buttons don’t work](https://wordpress.org/support/topic/last-update-buttons-dont-work/)
 *  [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/last-update-buttons-dont-work/#post-14124636)
 * Try adding it at the top of the functions.php file. Right after the `<?php`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] [BUG] Admin bar – Purge Minify Cache](https://wordpress.org/support/topic/bug-admin-bar-purge-minify-cache/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/bug-admin-bar-purge-minify-cache/#post-14119714)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] [BUG] Admin bar – Purge Minify Cache](https://wordpress.org/support/topic/bug-admin-bar-purge-minify-cache/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/bug-admin-bar-purge-minify-cache/#post-14104532)
 * Hi, please try it not while being in the Dashboard.
    Let me know if you have 
   any questions.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMNTCS Quantity Increment Buttons for WooCommerce] Last Update buttons don’t work](https://wordpress.org/support/topic/last-update-buttons-dont-work/)
 *  [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/last-update-buttons-dont-work/#post-14071940)
 * Found a temporary solution until the developers fix the issue.
    Add this code
   in your theme’s functions.php file:
 *     ```
       function dmc_wc_smntcswcb_quantity_fix_before() {
       	echo '<div class="product-quantity">';
       }
       function dmc_wc_smntcswcb_quantity_fix_after() {
       	echo '</div>';
       }
       add_action( 'woocommerce_before_add_to_cart_quantity', 'dmc_wc_smntcswcb_quantity_fix_before' );
       add_action( 'woocommerce_after_add_to_cart_quantity', 'dmc_wc_smntcswcb_quantity_fix_after' );
       ```
   
 * Keep in mind that if you will update your theme version, then this code will 
   be automatically removed. You can safely add it again.
    Let me know if this fixes
   the issue for you guys and feel free to contact me in case you need some help.
   Dan Web Developer
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMNTCS Quantity Increment Buttons for WooCommerce] Buttons not function on product pages](https://wordpress.org/support/topic/buttons-not-function-on-product-pages/)
 *  [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/buttons-not-function-on-product-pages/#post-14071933)
 * Found a temporary solution until the developers fix the issue.
    Add this code
   in your theme’s functions.php file:
 *     ```
       function dmc_wc_smntcswcb_quantity_fix_before() {
       	echo '<div class="product-quantity">';
       }
       function dmc_wc_smntcswcb_quantity_fix_after() {
       	echo '</div>';
       }
       add_action( 'woocommerce_before_add_to_cart_quantity', 'dmc_wc_smntcswcb_quantity_fix_before' );
       add_action( 'woocommerce_after_add_to_cart_quantity', 'dmc_wc_smntcswcb_quantity_fix_after' );
       ```
   
 * Keep in mind that if you will update your theme version, then this code will 
   be automatically removed. You can safely add it again.
    Let me know if this fixes
   the issue for you guys and feel free to contact me in case you need some help.
   Dan Web Developer
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SMNTCS Quantity Increment Buttons for WooCommerce] Buttons not function on product pages](https://wordpress.org/support/topic/buttons-not-function-on-product-pages/)
 *  [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/buttons-not-function-on-product-pages/#post-14071885)
 * Can confirm as well. Looking into a solution.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] IMPORTANT! Caching does not refresh after adding new posts.](https://wordpress.org/support/topic/important-caching-does-not-refresh-after-adding-new-posts/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/important-caching-does-not-refresh-after-adding-new-posts/#post-14060087)
 * After some tests it seems like sometimes the cache is cleared and sometimes not.
   I’ll run more tests on multiple websites and let you know if I find anything.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Doesn’t clean the cache on new post publish](https://wordpress.org/support/topic/doesnt-clean-the-cache-on-new-post-publish/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 3 months ago](https://wordpress.org/support/topic/doesnt-clean-the-cache-on-new-post-publish/#post-14043842)
 * I’ve marked this issue as UNRESOLVED. If anyone has similar issues please follow
   this new topic where we can track the progress of these issues: [https://wordpress.org/support/topic/important-caching-does-not-refresh-after-adding-new-posts/](https://wordpress.org/support/topic/important-caching-does-not-refresh-after-adding-new-posts/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Doesn’t clean the cache on new post publish](https://wordpress.org/support/topic/doesnt-clean-the-cache-on-new-post-publish/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/doesnt-clean-the-cache-on-new-post-publish/#post-13935560)
 * [@marcusig](https://wordpress.org/support/users/marcusig/) it is the home page
   with a `get_posts` function.
    I belive it also was not showing up in the RSS 
   feed. The RSS feed is using `while(have_posts()) : the_post();` I’ll post more
   info when I investigate this deeper. Currently I just disabled the cache.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Cached the home page as a blank white page](https://wordpress.org/support/topic/cached-the-home-page-as-a-blank-white-page/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/cached-the-home-page-as-a-blank-white-page/#post-13935556)
 * I am not able to re-create this, as I can’t risk having a white page as the home
   page of the website.
    I’ll get more info if this happens again on another website.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP-Optimize – Cache, Compress images, Minify & Clean database to boost page speed & performance] Breaks the htaccess file when activated 404, 500 errors](https://wordpress.org/support/topic/breaks-the-htaccess-file-when-activated-404-500-errors/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/breaks-the-htaccess-file-when-activated-404-500-errors/#post-13935552)
 * I’ll post it, if this happens again. I did not save a copy.
    I remember tho, 
   that the optimization code was at the top of the file.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[XML Sitemap Generator for Google] Does not include the Custom Post Type Archive Page](https://wordpress.org/support/topic/does-not-include-the-custom-post-type-archive-page/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/does-not-include-the-custom-post-type-archive-page/#post-13747938)
 * [@syedabutahir](https://wordpress.org/support/users/syedabutahir/) there is not
   such an option. Otherwise I would not be writing this post 😉
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] 9.6 kills RSS feeds](https://wordpress.org/support/topic/9-6-kills-rss-feeds/)
 *  Thread Starter [Dan Miller Coding](https://wordpress.org/support/users/danmillercoding/)
 * (@danmillercoding)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/9-6-kills-rss-feeds/#post-11236736)
 * Hi [@stodorovic](https://wordpress.org/support/users/stodorovic/), thank you 
   for your detailed explanation!
 * I did not know about the feed rewriting rules. I will use /feed from now on.
 * Thank you!
 * Best regards,
    Dan

Viewing 15 replies - 16 through 30 (of 32 total)

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