Resolved Some questions about the plugin

Discussion in 'WordPress' started by Adhen, Oct 6, 2015.

  1. Have feature suggestions for the WordPress plugin? Post or vote here.
  1. xfrocks

    xfrocks XenForo rocks!
    Staff Member

    You may try this

    Code:
    function remove_cssjs_ver( $src ) {
    if (!strpos($src,'google') && !strpos($src,'index.php'))
    $parts = explode( '?', $src );
    else
    $parts[0] = $src;
    
    return $parts[0];
    }
     
  2. Adhen

    Adhen New Member

    Thank you, its working!
     
    xfrocks likes this.
Loading...