• Resolved colmagoo

    (@colmagoo)


    Hi,

    Every time I make a change to the theme css file or a change to content, I’m having to purge my minified files and the cache in order to see the changes take place. Is there an option to make these changes visible automatically without having to do this each time? Also, in the admin area, every time I click to go to the WP Optimize settings, it takes about 20 seconds for the page to load. Is this normal and if not, is there something I can do to reduce the time? Thanks

Viewing 1 replies (of 1 total)
  • Plugin Support vupdraft

    (@vupdraft)

    Full and partial preload are done under the following circumstances

    Full cache purge:

    • When changing/updating current themes and parent themes (of child themes)
    • When changing/updating current plugins
    • When turning off the cache feature in WP-Optimize
    • When editing widgets
    • When saving the customizer settings
    • When updating a menu
    • When Autoptimize purges its cache
    • When updating permalink structure
    • When changing cache settings
    • When updating string translations in WPML plugin
    • When updating the ‘posts_per_page’ option
    • When purging Avada theme’s fusion caches
    • When saving any of GetWooPlugins’ settings (Premium)

    This can be changed by hooking into the filter wpo_purge_cache_hooks. E.g.// Add a new action that will trigger a cache purge add_filter( ‘wpo_purge_cache_hooks’, function( $actions ) { $actions[] = ‘my_custom_action’; return $actions; } ); Partial cache purge:

    • When you publish new content or update/edit existing content, the cache for that post/page will be cleared, as well as associated content (category archives, blog archives)
    • When comments are approved, or their status changes
    • When terms are created or updated
    • When changing/updating stock quantity of WooCommerce product or product variation
    • When updating the ‘page_on_front’ option
    • When updating ‘page_for_posts’ option
    • When updating the ‘URLs to exclude from caching’ WP-Optimize caching configuration
    • When trashing a post
    • When running importers
    • When WooCommerce product is on sale (Premium)

    For your speed issue, do you have the option to “enable admin bar menu” checked?

    https://snipboard.io/1CumKX.jpg

    If so can you uncheck it?

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.