• Resolved cooper08

    (@cooper08)


    There are useful things in this section, but one thing is missing. The wordpress version can be hidden, but the version of the plugins would also be good. I use this code:
    //Remove WP Version From Styles
    add_filter( ‘style_loader_src’, ‘remove_res_version’, 9999 );

    //Remove WP Version From Scripts
    add_filter( ‘script_loader_src’, ‘remove_res_version’, 9999 );

    //Remove version number strings from static resources
    function remove_res_version( $src ) {
    if ( strpos( $src, ‘ver=’ ) )
    $src = remove_query_arg( ‘ver’, $src );
    return $src;
    }
    You can turn the page with a switch, that would be useful. Thanks.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Bowo

    (@qriouslad)

    @cooper08 thanks for the suggestion and snippets.Will consider for inclusion in ASE.

    Plugin Author Bowo

    (@qriouslad)

    @cooper08 this has been implemented and should be available in the next release. Thanks again for your suggestion or code reference!

    Thread Starter cooper08

    (@cooper08)

    Thanks! Looking forward to it! I will have more ideas! ??

    Plugin Author Bowo

    (@qriouslad)

    @cooper08 keep them coming! While I can’t guarantee all ideas / feedback will be implemented, I’ll always consider.

    Plugin Author Bowo

    (@qriouslad)

    @cooper08 by the way, to appreciate the feedback you’ve given in improving ASE with a sneak peak of, and discount code you can get for the soon-to-be-released Pro version of ASE.

    If you’re interested, please contact me at https://bowo.io so I can send you the link to the website and the discount code.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Disable Smaller Components’ is closed to new replies.