• Is there any way to make Swift Performance compatible with this plugin?
    Method it woks is adding specific rulles to .htaccess + mu_plugin.
    In short, this plugin has a feature to hide real wordpress directories
    /wp-content/plugins/jetpack can be turned to just /jep/
    Images directories old url /wp-content/uploads/ new folder – /media/
    and so on…This features works when i am administrator ,before concatenation and caching But anonimous users see cached page with old urls for example images /wp-content/uploads/

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author swte

    (@swte)

    Hi,

    In theory yes, please try to add the following code to your child theme’s functions.php:

    add_filter('swift_performance_buffer', function($buffer){
     $buffer = apply_filters( 'wp-hide/ob_start_callback', $buffer );
     return $buffer;
    });
    • This reply was modified 6 years, 9 months ago by swte.
    Thread Starter dobriku

    (@dobriku)

    Nope, didn’t work

    Plugin Author swte

    (@swte)

    We are going to check it, and let you know shortly

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘WP hide and security compatibility’ is closed to new replies.