• Resolved cooper08

    (@cooper08)


    Hi!

    Some of the smaller components do not work, hide versions! I don’t know why it’s not good, but I just noticed it. Previously I used 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;
    }
    Thanks help.

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

    (@qriouslad)

    @cooper08 thanks for reporting this. ASE uses a similar code. Can you share more about your WordPress setup? Theme / page builder? Where do you still see the version number?

    Thread Starter cooper08

    (@cooper08)

    Sorry. I only see it when I’m logged in. It works fine anyway!

    Plugin Author Bowo

    (@qriouslad)

    Great then. Marking this solved for now. Thank you.

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