We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if this is an issue.. but how do I add multiple parameters which I want to be ignored and instead delivery the default cache file?
$params['pk_campaign','pk_kwd','pk_source'] = 1;
Tried this which breaks my site,
$params['pk_campaign'] = 1; $params['pk_kwd'] = 2; $params['pk_source'] = 3;
Tried this, which did not help..
The text was updated successfully, but these errors were encountered:
I also tried adding the following:
function define_ignored_parameters( array $params ) {
$params = ['pk_campaign' => 1,'pk_kwd' => 1,'pk_source' => 1,]; //unset ( $params['utm_source'] ); return $params;
}
However the default cache file is still not being served.
Sorry, something went wrong.
despite the issue #38 where the plugin does not work? have you tried this
$params['pk_campaign'] = 1; $params['pk_kwd'] = 1; $params['pk_source'] = 1;
No branches or pull requests
Not sure if this is an issue.. but how do I add multiple parameters which I want to be ignored and instead delivery the default cache file?
$params['pk_campaign','pk_kwd','pk_source'] = 1;
Tried this which breaks my site,
Tried this, which did not help..
The text was updated successfully, but these errors were encountered: