Skip to content

Instantly share code, notes, and snippets.

@remyperona
Created March 9, 2018 02:15
Show Gist options
  • Save remyperona/4ce6b4d4069fe0193d8ac7e70a448812 to your computer and use it in GitHub Desktop.
Save remyperona/4ce6b4d4069fe0193d8ac7e70a448812 to your computer and use it in GitHub Desktop.
<?php
function rocket_remove_acs_mandatory_cookies( $cookies ) {
$cookies = array_flip( $cookies );
unset( $cookies['aelia_cs_selected_currency'] );
unset( $cookies['aelia_customer_country' );
return array_flip( $cookies );
}
add_filter( 'rocket_cache_mandatory_cookies', 'rocket_add_aelia_currencyswitcher_mandatory_cookie', 11 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment