Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('swift_performance_is_cacheable', function($result){
- $tc_cookies = array(
- 'tc_cart_seats_',
- 'tc_cart_',
- 'tc_order_',
- 'cart_info_',
- 'tc_cart_seats_',
- 'tc_discount_code_'
- );
- foreach ($tc_cookies as $tc_cookie){
- if (defined('COOKIEHASH') && isset($_COOKIES[$tc_cookie . COOKIEHASH])){
- return false;
- }
- }
- return $result;
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement